source: branches/version-2_5-dev/data/Smarty/templates/admin/contents/csv.tpl @ 19771

Revision 19771, 2.4 KB checked in by nanasess, 13 years ago (diff)

r19770 の typo btn_normal -> btn-normal

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23*}-->
24<link rel="stylesheet" href="<!--{$TPL_DIR}-->jquery.multiselect2side/css/jquery.multiselect2side.css" type="text/css" media="screen" />
25<script type="text/javascript" src="<!--{$TPL_DIR}-->jquery.multiselect2side/js/jquery.multiselect2side.js" ></script>
26<script type="text/javascript">
27<!--
28$().ready(function() {
29    $('#output_list').multiselect2side({
30        selectedPosition: 'left',
31        moveOptions: true,
32        labelsx: '出力項目一覧',
33        labeldx: '出力可能項目一覧'
34    });
35    // multiselect2side の初期選択を解除
36    $('.ms2side__div select').val(null);
37    // [Sort] ボタンは混乱防止のため非表示
38    // FIXME 選択・非選択のボタンと比べて、位置ズレしている
39    $('.ms2side__div .SelSort').hide();
40});
41//-->
42</script>
43
44<form name="form1" id="form1" method="post" action="?">
45<input type="hidden" name="mode" value="confirm" />
46<input type="hidden" name="tpl_subno_csv" value="<!--{$tpl_subno_csv}-->" />
47<div id="admin-contents" class="contents-main">
48    <h2><!--{$SubnaviName}--></h2>
49    <div>
50        <span class="attention"><!--{$arrErr.output_list}--></span>
51        <select multiple name="output_list[]" style="<!--{$arrErr.output_list|sfGetErrorColor}-->;" id="output_list" size="20">
52            <!--{html_options options=$arrOptions selected=$arrSelected}-->
53        </select>
54    </div>
55
56    <div class="btn"><a class="btn-normal" href="javascript:;" onclick="fnFormModeSubmit('form1', 'confirm', '', '');"><span>この内容で登録する</span></a></div>
57
58</div>
59</form>
Note: See TracBrowser for help on using the repository browser.