如何设置radiogroup默认选中

如何设置radiogroup默认选中,第1张

((RadioButton)radioGroup.getChildAt(0)).setChecked(true)我写的0,你可以根据自己的情况来写。

布局里面使用android:checkedButton="@+id/radio0"

如果生成时把默认值对应的checked设为ture,

如果已经生成要改大致这样写form.down("name[value='缺省值']).checked=true

例子:

Ext.create('Ext.form.Panel', {

title: 'RadioGroup Example',

width: 300,

height: 125,

bodyPadding: 10,

renderTo: Ext.getBody(),

items:[{

xtype: 'radiogroup',

fieldLabel: 'Two Columns',

// Arrange radio buttons into two columns, distributed vertically

columns: 2,

vertical: true,

items: [

{ boxLabel: 'Item 1', name: 'rb', inputValue: '1' },

{ boxLabel: 'Item 2', name: 'rb', inputValue: '2', checked: true},

{ boxLabel: 'Item 3', name: 'rb', inputValue: '3' },

{ boxLabel: 'Item 4', name: 'rb', inputValue: '4' },

{ boxLabel: 'Item 5', name: 'rb', inputValue: '5' },

{ boxLabel: 'Item 6', name: 'rb', inputValue: '6' }

]

}]

})


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11552787.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存