gpt4 book ai didi

extjs - Sencha 触摸 : Passing store to checkbox?

转载 作者:行者123 更新时间:2023-12-04 23:52:07 25 4
gpt4 key购买 nike

如何通过传递商店来创建复选框列表?

类似的东西:

items: [{
xtype: 'checkboxfield',
id: {id},
name : {name},
label: {label},
value: {value},
store: App.store.checkboxStore
}]

好吧,我已经通过遍历商店并添加要查看的复选框来实现它。不过,如果您有任何更简单的方法,请分享。

var catStore = App.stores.profileStore; *<<YOUR STORE>>*
for (i = 0; i < catStore.getCount(); i++) {

App.views.destinationsView.add({
items: [{
xtype: 'checkboxfield',
label: catStore.getAt(i).data.label,
value: catStore.getAt(i).data.value,
name: catStore.getAt(i).data.name,

}]
});
}

最佳答案

如果您希望在不循环访问商店的情况下生成复选框,您可以使用带有复选框选择模型的网格,它将自动呈现复选框。网格可以根据需要设置样式,例如隐藏边框。

这是一个 Sencha example带有复选框的网格(您可以将它们放在您喜欢的任何列中。)

关于extjs - Sencha 触摸 : Passing store to checkbox?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8653703/

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