简体   繁体   中英

Changing checkboxes to a radio button group ExtJS

I am brand new to Ext JS . I have this group of checkboxes that work fine but I need to change them to Radio buttons and retain their functionality. If you could help me out I would appreciate it. Again I am brand new to EXT JS. I made them field.Radio but still allows all of them to be selected. Please help:

var employeeBox = Ext.create('Ext.form.field.Radio', {
         id:'employeeBox',
             fieldLabel: 'Employee Group:',
           labelAlign:'left'
         });


       var mpBox = Ext.create('Ext.form.field.Radio', {
         id:'mpBox',
             fieldLabel: 'Market Particpants Group:',
           labelAlign:'left'
         });


       var committeeBox = Ext.create('Ext.form.field.Radio', {
         id:'committeeBox',
             fieldLabel: 'Committee Group:',
           labelAlign:'left'
         });

You need to add the same name to all of them. For example:

   var employeeBox = Ext.create('Ext.form.field.Radio', {
         id:'employeeBox',
         name: 'group',
         fieldLabel: 'Employee Group:',
         labelAlign:'left'
   });


   var mpBox = Ext.create('Ext.form.field.Radio', {
         id:'mpBox',
         name: 'group',
         fieldLabel: 'Market Particpants Group:',
         labelAlign:'left'
   });


   var committeeBox = Ext.create('Ext.form.field.Radio', {
        id:'committeeBox',
        name: 'group',
        fieldLabel: 'Committee Group:',
        labelAlign:'left'
   });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM