如何分组sencha touch 2无线电领域

时间:2013-05-13 08:46:09

标签: radio-button touch sencha-touch sencha-touch-2

这是我的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'
            }]
        }]
    }
});

以下是代码的预览。我得到的是:

what i get is this

我想将下面给出的无线电字段分组。

what i need is this

我该怎么做?

1 个答案:

答案 0 :(得分:0)

在以下链接中,您可以找到一个示例。希望对你有效。 http://sureshdotariya.blogspot.be/2013/05/how-to-group-radio-buttons-in-form.html

迎接