随笔 - 349  文章 - 2  评论 - 2  阅读 - 17万

Extjs4 radiogroup打开时的被选中值设置为变量

在打开有radiogroup时,有时会需要被选中的值不是某个定值,而是根据某个变量可以变化的。

这是radiogroup的代码:

        items: [{
        xtype: 'radiogroup',

id: 'myRadio',
height: 60,
items: [
 { boxLabel: '经典蓝', name: 'changeTheme', inputValue: 'ext-all', width: 80 ,checked: true},
 { boxLabel: '气质灰', name: 'changeTheme', inputValue: 'ext-all-gray', width: 80 },
 { boxLabel: '深海蓝', name: 'changeTheme', inputValue: 'ext-all-slate', width: 80 }
 ]
}]

这是打开radiogroup所在的页面时,动态设置radiogroup的值:

Ext.getCmp('myRadio').setValue({changeTheme:themeTemp});

setValue中必须是object数组,其中changeTheme是radiogroup的name,themeTemp是设置的变量。但是themeTemp必须是inputValue中的某一个值。

posted on   浩瀚孤鸿  阅读(508)  评论(0编辑  收藏  举报
< 2012年11月 >
28 29 30 31 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示