这是我的sencha touch 2代码:
Ext.define("10.view.Main", {
extend: 'Ext.form.Panel',
requires: ['Ext.form.FieldSet'],
config: {
title: 'Main',
scrollable: 'both',
editable: false,
items: [{
xtype: 'fieldset',
items: [{
xtype: 'radiofield',
name: 'color',
value: 'red',
label: 'Red',
checked: true
},
{
xtype: 'radiofield',
name: 'color',
value: 'blue',
label: 'Blue'
}]
}]
}
});
以下是代码的预览。我得到的是:
我想将下面给出的无线电字段分组。
我该怎么做?
答案 0 :(得分:0)
在以下链接中,您可以找到一个示例。希望对你有效。 http://sureshdotariya.blogspot.be/2013/05/how-to-group-radio-buttons-in-form.html
迎接