{field:'status',title:'Status',width:50,align:'center', editor:{ type:'checkbox', options:{ on: "true", off: "false" } } }, options未生效
时间: 2024-04-30 13:21:46 浏览: 126
微信小程序 仁怀酱酒宝:酒类商城模板(截图+源码)
根据你提供的代码,我发现你在使用easyui的datagrid中的editor时,options未生效。这可能是由于你没有正确设置editor的值。下面是一个示例,展示了如何在easyui的datagrid中使用checkbox editor,并正确设置options:
```
{field:'status',title:'Status',width:50,align:'center', editor:{
type:'checkbox',
options:{
on:'true',
off:'false'
}
}}
```
请注意,options应该是一个对象,并且包含两个属性:on和off,它们分别对应选中和未选中状态的值。请确保在您的代码中正确设置这些值。如果这些仍然无效,可以检查你是否正确引入了easyui的相关脚本和样式文件。
阅读全文