How to group sencha touch 2 radio fields -


this sencha touch 2 code:

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'             }]         }]     } }); 

here preview of code. this:

what this

i want group radio fields given below.

what need this

how can it?

at following link can find example. hope works you. http://sureshdotariya.blogspot.be/2013/05/how-to-group-radio-buttons-in-form.html

greets


Comments

Popular posts from this blog

php - cannot display multiple markers in google maps v3 from traceroute result -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -