2013-05-13 38 views
1

這是我的煎茶觸摸2代碼:如何組煎茶觸摸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

我該怎麼辦呢?

+0

是否有任何插件或東西這樣做呢? – uia9020 2013-05-17 06:18:25

回答