gpt4 book ai didi

带有 Radiogroup 的 Extjs

转载 作者:行者123 更新时间:2023-12-04 23:30:37 24 4
gpt4 key购买 nike

我们可以在 ext 中将静态 json 存储与 radiogroup 绑定(bind)吗?

最佳答案

Radiogroups 和 Stores 在 ExtJS 中没有直接关系。从存储中填充表单值很容易,但是使用存储来实际创建字段需要一些工作。具体来说,你必须做这样的事情(假设 Ext 3.3.1),并且你的 JsonStore 已经设置好了......

var store = <your predefined store, with records>;
var itemsInGroup = [];

store.each( function(record) {
itemsInGroup.push( {
boxLabel: record.someLabel,
name: record.someName,
inputValue: record.someValue
});
});

var myGroup = {
xtype: 'radiogroup',
fieldLabel: 'My Dynamic Radiogroup',
items: itemsInGroup
};

关于带有 Radiogroup 的 Extjs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5559594/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com