Ext.field.Checkbox(xtype: checkboxfield)。

多个选择项并列,可选择多个。

示范

items: [{

   xtype: 'fieldset',

   padding: '0',

   items: [{

       xclass: 'Ext.field.Checkbox',

       label: '多选1',

       xdatabind: 'iDemoAppFields.Checkbox1',

       value: 'Yes',

       checked: false

   }, {

       xclass: 'Ext.field.Checkbox',

       label: '多选2',

       xdatabind: 'iDemoAppFields.Checkbox2',

       value: true,

       checked: true

   }]

}, {

   xtype: 'fieldset',

   padding: '0',

   items: [{

       xclass: 'Ext.field.Checkbox',

       label: '绑定到1个字段',

       xdatabind: 'iDemoAppFields.Checkbox3',

       value: 'A',

       checked: true

   }, {

       xclass: 'Ext.field.Checkbox',

       label: '绑定到1个字段',

       xdatabind: 'iDemoAppFields.Checkbox3',

       value: 'B',

       checked: true

   }]

}]

属性说明

属性名称

说明

label

选择项名称

xdatabind

绑定字段,多个选择项绑定到一个字段时,值以逗号分隔(值对应value属性)

checked

默认是否选中

value

选中时存储的值

Created with the Personal Edition of HelpNDoc: News and information about help authoring tools and software