当选中复选框时,Kendo Grid Set Value

时间:2017-02-10 03:33:33

标签: javascript java jsp checkbox kendo-grid

我有代码:

 <kendo:grid-columns>     
        <kendo:grid-column width="150px" title="<label style='color:white;'>ABC Product</label>" field="productCategory" template="<input type='checkbox' disabled='disabled' value='#=productCategory#' name='test' #=productCategory == true ? 'checked' : ''# />"/> 
        <kendo:grid-column width="auto" title="<label style='color:white;'>Product Name</label>" field="productName"  /> 
        <kendo:grid-column width="110px" title="<label style='color:white;'>Quantity</label>" field="qty" template="<div align='right'>#=kendo.toString(qty,'n0')#</div>"/>  
        <kendo:grid-column width="auto" title="<label style='color:white;'>Unit</label>" field="unit"  />  
        <kendo:grid-column width="140px" title="<label style='color:white;'>Price</label>" field="price" template="<div align='right'>#=kendo.toString(price,'n0')#</div>"/>
        <kendo:grid-column width="170px" title="<label style='color:white;'>Total</label>" field="total" editor="standardGroupEditor" template="<div align='right'>#=kendo.toString(qty*price,'n0')#</div>"/>                         
        <kendo:grid-column width="1px" title="<label style='color:white;display:none'>Total</label>" field="total" editor="standardGroupEditor" template="<input type='hidden' style='text-align:right;width:150px' readonly='readonly' value='#=kendo.toString(qty*price,'n0') #' id='total' name='TEMPVALUE' #=total == null ? '---' : total# />"/>

          <kendo:grid-column title="&nbsp;" width="175px"> 
                <kendo:grid-column-command> 
                  <kendo:grid-column-commandItem name="edit"/> 
                       <kendo:grid-column-commandItem name="delete"/>    
                    </kendo:grid-column-command>  
                 </kendo:grid-column>  
            </kendo:grid-columns>

我想在Unit选中{1}}时设置值“1”,取消选中时设置ABC Product

我试过这个:

null

我根据thisthis学习,但在我的案例中没有发生任何事情。

0 个答案:

没有答案