第一次onload jqxgrid时,我在复选框列中获取空值。
Column properties:
{ text: ”, type: ‘bool’,datafield: ‘available’, columntype: ‘checkbox’,checked:false, width: 70},
jqxgrid properties:
width: ’100%’,
source: transAdapter,
autoheight: true,
pageable: true,
altrows:true,
editable: true,
selectionmode: ‘multiplecellsextended’,
这里我也没有使用threestatecheckbox
属性,但我仍然在该列中获得空值。你能帮我解决这些问题吗?
答案 0 :(得分:1)
您希望通过json或数组作为输入传递该数据字段(可用字段)的值。 如果您输入False作为输入,它将取消选中onload中的复选框。 如果您输入True作为输入,它将检查onload中的复选框。
这是解决问题的方法。