Extjs 与 Radiogroup
我们可以将静态 json 存储与 ext 中的 radiogroup 绑定吗?
can we bind static json store with radiogroup in ext?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们可以将静态 json 存储与 ext 中的 radiogroup 绑定吗?
can we bind static json store with radiogroup in ext?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
Radiogroups 和 Stores 在 ExtJS 中并不直接相关。从商店填充表单值很容易,但使用商店实际创建字段需要一些处理。具体来说,您必须执行类似的操作(假设 Ext 3.3.1),并且您的 JsonStore 已设置...
Radiogroups and Stores are not directly related in ExtJS. It's easy to populate form values from a store, but using a store to actually create the fields requires a slight work around. Specifically, you would have to do something like this (assuming Ext 3.3.1), and that your JsonStore is already set up...
您可以使用 dataView 来进行此操作。根据存储值,您可以添加单选按钮。
假设您的商店有 5 个商品,那么将显示 5 个单选按钮。
You can use dataView for this operation. Depending on store value you can add radio buttons.
Suppose your store has 5 items than 5 radio buttons will be displayed.