jqgrid 复选框 - 在添加新内容时设置默认值
当用户点击 inlineNav“添加”按钮时,我试图设置复选框的默认值。
看来这个问题将包含我想要的答案
但遗憾的是,它不起作用。我在 colModel 中使用以下条目:
{name:'enabled', index:'`enabled`', width:120,editable:true, edittype:"checkbox", editoptions:{value:"1:0", defaultValue:"1"}, formatter:"checkbox", align:"center"}
我已尝试 {defaultValue:1}, {value:"Yes:No", defaultValue"Yes"}, {defaultValue:function(){return:"1"} }
等等,但似乎都没有达到目的。
有人可以帮我吗?在我深入研究源代码以帮助找出答案之前,我是否遗漏了一些明显的东西。
I am trying to set the default value of a checkbox when the user hits the inlineNav "Add" button.
It would seem this question would contain the answer I desire
jqGrid add item checkbox field defaulted to checked
but alas, it doesn't work. I am using the following entry in my colModel:
{name:'enabled', index:'`enabled`', width:120,editable:true, edittype:"checkbox", editoptions:{value:"1:0", defaultValue:"1"}, formatter:"checkbox", align:"center"}
I have tried {defaultValue:1}, {value:"Yes:No", defaultValue"Yes"}, {defaultValue:function(){return:"1"}}
etc. but all don't seem to do the trick.
Can someone please help me? Am I missing something obvious, before I go rooting around in the source to help figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您使用的不是 jqGrid 的最新版本。
editoptions
的defaultValue
属性使用问题在 4.3.0 版本中存在,但在 4.3.1 版本中已修复。我对我的回答对您的旧问题的演示进行了最小的修改。比较使用jqGrid 4.3.1的演示与相同使用旧版本(4.3.0)的 jqGrid 的演示。如果您单击新演示上的“添加”按钮,则会添加选中的复选框,该复选框对应于设置。
另一方面,使用 jqGrid 4.3.0 的演示忽略该设置并创建始终未选中的复选框。
I suppose that you use not the last version of jqGrid. The problem with the usage of
defaultValue
property ofeditoptions
exist in the version 4.3.0, but it's fixed in the version 4.3.1.I make minimal modifications in the demo from my answer on your old question. Compare the demo which uses jqGrid 4.3.1 with the same demo which uses old version (4.3.0) of jqGrid. If you click on "Add" button on the new demo the checkbox will be added checked which corresponds the setting
On the other side the demo which uses jqGrid 4.3.0 ignore the setting and create always unchecked checkbox.