extjs radioGroup怎么取选中的值?怎么设置值选中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了extjs radioGroup怎么取选中的值?怎么设置值选中相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Extjs 4.2 demo</title>
<link rel="stylesheet" href="../resources/css/ext-all.css">
<script src="../bootstrap.js"></script>
<script>

Ext.onReady(function()

Ext.create('Ext.Panel',

width:450,
items:[

width:'100%',
xtype: 'radiogroup',
items: [
boxLabel: 'Item 1', name: 'rb-x',
boxLabel: 'Item 2', name: 'rb-x',
//checked属性 设置默认选中
boxLabel: 'Item 3', name: 'rb-x',checked: true,
boxLabel: 'Item 4', name: 'rb-x'
]
,
xtype:'button',
text:'获取选择的值',
handler:function()

var rg = this.up('panel').items.items[0];
var selected = rg && rg.getChecked();

selected = selected && selected[0];
selected && Ext.Msg.alert('选择的值',selected && selected.boxLabel);

,
xtype:'button',
text:'选中第2个',
handler:function()

var rg = this.up('panel').items.items[0];
var box2 = rg && rg.getBoxes()[1];
box2 && box2.setValue(true);

],
renderTo:Ext.getBody()

);
);

</script>
</head>
<body>

</body>
</html>

参考技术A <!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>Extjs 4.2 demo</title> <link rel="stylesheet" href="../resources/css/ext-all.css"> <script src="../bootstrap.js"></script> <script> Ext.onReady(function() Ext.create('Ext.Panel', width:450, items:[ width:'100%', xtype: 'radiogroup', items: [ boxLabel: 'Item 1', name: 'rb-x', boxLabel: 'Item 2', name: 'rb-x', //checked属性 设置默认选中 boxLabel: 'Item 3', name: 'rb-x',checked: true, boxLabel: 'Item 4', name: 'rb-x' ] , xtype:'button', text:'获取选择的值', handler:function() var rg = this.up('panel').items.items[0]; var selected = rg && rg.getChecked(); selected = selected && selected[0]; selected && Ext.Msg.alert('选择的值',selected && selected.boxLabel); , xtype:'button', text:'选中第2个', handler:function() var rg = this.up('panel').items.items[0]; var box2 = rg && rg.getBoxes()[1]; box2 && box2.setValue(true); ], renderTo:Ext.getBody() ); ); </script></head><body> </body></html>

以上是关于extjs radioGroup怎么取选中的值?怎么设置值选中的主要内容,如果未能解决你的问题,请参考以下文章

Android 谁有动态添加多个RadioGroup 并获取所有RadioGroup被选中的值的方法?

listview 里有存在radiogroup,如何获得其选中的值?

如何使用 extjs 4.2 更改 radiogroup 检查值的样式?

如何获取radiobutton默认选中的值

DevExpress中XtraEditors.RadioGroup 控件如何保存获取选中的值及读取数据库中的值

ExtJS 4 RadioGroup Change Event两次爆发