Ignore:
Timestamp:
2013/08/15 20:05:17 (11 years ago)
Author:
h_yoshimoto
Message:

#2342 基本情報管理>SHOPマスターにてJSエラーで登録処理が動かなかったので一旦戻します

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/Smarty/templates/default/products/list.tpl

    r23066 r23071  
    2727        var $sele1 = $form.find('select[name=classcategory_id1]'); 
    2828        var $sele2 = $form.find('select[name=classcategory_id2]'); 
    29         eccube.setClassCategories($form, product_id, $sele1, $sele2, classcat_id2_selected); 
     29        setClassCategories($form, product_id, $sele1, $sele2, classcat_id2_selected); 
    3030    } 
    3131    // 並び順を変更 
    3232    function fnChangeOrderby(orderby) { 
    33         eccube.setValue('orderby', orderby); 
    34         eccube.setValue('pageno', 1); 
    35         eccube.submitForm(); 
     33        fnSetVal('orderby', orderby); 
     34        fnSetVal('pageno', 1); 
     35        fnSubmit(); 
    3636    } 
    3737    // 表示件数を変更 
    3838    function fnChangeDispNumber(dispNumber) { 
    39         eccube.setValue('disp_number', dispNumber); 
    40         eccube.setValue('pageno', 1); 
    41         eccube.submitForm(); 
     39        fnSetVal('disp_number', dispNumber); 
     40        fnSetVal('pageno', 1); 
     41        fnSubmit(); 
    4242    } 
    4343    // カゴに入れる 
     
    191191                    <div class="detail_btn"> 
    192192                        <!--{assign var=name value="detail`$id`"}--> 
    193                         <a href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$arrProduct.product_id|u}-->" onmouseover="eccube.chgImg('<!--{$TPL_URLPATH}-->img/button/btn_detail_on.jpg','<!--{$name}-->');" onmouseout="eccube.chgImg('<!--{$TPL_URLPATH}-->img/button/btn_detail.jpg','<!--{$name}-->');"> 
     193                        <a href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$arrProduct.product_id|u}-->" onmouseover="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_detail_on.jpg','<!--{$name}-->');" onmouseout="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_detail.jpg','<!--{$name}-->');"> 
    194194                        <img src="<!--{$TPL_URLPATH}-->img/button/btn_detail.jpg" alt="商品詳細を見る" name="<!--{$name}-->" id="<!--{$name}-->" /></a> 
    195195                    </div> 
     
    239239                                    <!--★カゴに入れる★--> 
    240240                                    <div id="cartbtn_default_<!--{$id}-->"> 
    241                                         <input type="image" id="cart<!--{$id}-->" src="<!--{$TPL_URLPATH}-->img/button/btn_cartin.jpg" alt="カゴに入れる" onclick="fnInCart(this.form); return false;" onmouseover="eccube.chgImg('<!--{$TPL_URLPATH}-->img/button/btn_cartin_on.jpg', this);" onmouseout="eccube.chgImg('<!--{$TPL_URLPATH}-->img/button/btn_cartin.jpg', this);" /> 
     241                                        <input type="image" id="cart<!--{$id}-->" src="<!--{$TPL_URLPATH}-->img/button/btn_cartin.jpg" alt="カゴに入れる" onclick="fnInCart(this.form); return false;" onmouseover="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_cartin_on.jpg', this);" onmouseout="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_cartin.jpg', this);" /> 
    242242                                    </div> 
    243243                                    <div class="attention" id="cartbtn_dynamic_<!--{$id}-->"></div> 
Note: See TracChangeset for help on using the changeset viewer.