1

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

这是代码的预览。我得到的是:

我得到的是这个

我想对我的无线电字段进行分组,如下所示。

我需要的是这个

我该怎么做?

4

1 回答 1

0

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

问候

于 2013-05-29T07:56:46.083 回答