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:
i want group radio fields given below.
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
Post a Comment