loadRecord之后加载存储之前的Extjs组合初始值
我对组合框初始值有疑问。我使用 form.loadRecord() 和 form.updateRecord() 加载表单值并将它们插入到网格中。除了组合值之外,它工作正常。我在单击时按需加载组合存储,因此在初始 loadRecord() 之后,我得到一个带有 id 的 int 值。我在网格上有 smthid 和 smthname 列。
我尝试在渲染之前更改值,但正如怀疑的那样,它会传播到网格。当值不是 int 时,我需要以某种方式更改组合的初始值,而不将其写入网格。
I have a problem with combobox initial value. I'm using form.loadRecord() and form.updateRecord() to load form values and insert them to grid. It works ok except for the combo values. I load store for combo on demand when it is clicked, so after the initial loadRecord() I get an int value with id. I have both smthid and smthname columns on grid.
I tried to change the value beforerender but as suspected it gets propagated to grid. I need to somehow change the initial value of the combo without writing it to the grid when the value is not int.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在 Combo 上使用
setValue()
或setRawValue()
。这应该设置显示,但在您手动updateRecord()
之前不会保存记录。Try using
setValue()
orsetRawValue()
on the Combo. This should set the display, but not save the record until youupdateRecord()
manually.