我正在尝试将复选框字段绑定到gird并选择所有选项 -
selModel: { selType: 'checkboxmodel', //dataIndex:'flag', //showHeaderCheckbox: true }
我正在尝试将dataIndex绑定到它,以便在加载网格时,将选中相应的复选框。
我尝试使用
{{1}}
但没有成功。请建议我如何在这里绑定dataIndex。
答案 0 :(得分:0)
我建议您使用https://docs.sencha.com/extjs/5.0/5.0.1-apidocs/#!/api/Ext.grid.column.Check
如果没有,则标志必须为true或false,您应该在模型中进行转换,如
{ name: 'flag', type: 'bool',
convert: function (v) {
return (v === "True" || v === true) ? true : false;
}
}