我有代码:
<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=" " 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