在jqGrid的,列定義如下:當複選框被選中,錯誤值將被提交爲屬性
{name:'production', index:'production', width:60, align:'center', formatter:'checkbox',editable:true,edittype:'checkbox',editoptions:{value:"true:false"},formoptions:{ rowpos:10,elmprefix:" " }},
編輯表單生成的HTML如下:
<input type="checkbox" value="true:false" offval="false" id="production" role="checkbox" class="FormElement">
所以當複選框未被選中時,提交正確的值'false',但是當複選框被選中時,提交'true:false',這顯然是錯誤的。我想要'真'被提交。我究竟做錯了什麼?
謝謝!