当我在选择值中有逗号时,为什么 jQuery jqGrid 不能正确默认我的组合框?
我正在将 jqGrid 与 ASP.NET MVC 一起使用。我有一个效果很好的编辑表单,但由于某种原因,我有一个组合框字段,在我第一次打开编辑表单后,该字段不会默认为当前选定的行。
我已经找到根本原因了。下拉列表中的值都包含逗号,因为它们以以下格式显示名称:
[LastName, FirstName]
当我从选择值中删除逗号时,问题就消失了。
有什么方法可以在 jqGrid 编辑表单的选择下拉列表中支持逗号吗?
I am using jqGrid with ASP.NET MVC. I have an edit form which works great, but for some reason I have one combobox field that doesn't default to the current selected row after the first time I bring up the edit form.
I have found the root cause. The values in the dropdown all have commas in them as they are showing name in the format:
[LastName, FirstName]
When I remove the comma from the select values, the problem goes away.
Is there any way to support commas in a select dropdown on a jqGrid edit form?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您会在此处找到问题的答案:您应使用对象而不是字符串作为选择值列表的
value
选项的值。Probably you will find the answer on your question here: you should use object instead of string as the value of the
value
option for the list of select values.