第一次加载Jqxgrid页面时在复选框列中获取空值

Getting a null value in the check box column while loading Jqxgrid page first time

我在第一次加载 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 属性 但我仍然得到空值 column.can 你能帮我解决这些问题吗?

您希望通过 json 或数组作为输入传递该数据字段(可用字段)的值。 如果您将 False 作为输入传递,它将取消选中 onload 中的复选框。 如果您将 True 作为输入传递,它将选中 onload 中的复选框。

这是解决问题的方法。