0

我需要一个制作代码来检查是否选中了 Ext JS Checkbox。

我使用这样的代码:

var RadioPeriod = new Ext.form.Checkbox({
             id:'period',
             //xtype: 'radio',
               checked: true,
               fieldLabel: '',
               labelSeparator: '',
               boxLabel: 'Period',
               name: 'employment_type',
               inputValue: 'period'
               // listener below
          });

我只需要一个简短的听众。

顺便说一句,我需要一项每月收费的服务,并且有全职员工可以非常快速地回答我的问题,因为我确实需要隐含地回答我的问题。我想要与你免费提供的类似服务。

我不想继续支持 Sencha, Inc.,因为它不符合我的需求,而且我没有风险资本投资者可以从合作伙伴计划中为 Sencha, Inc. 支付费用。

4

2 回答 2

0

RadioPeriod.getValue()

这一切都在 API 文档中:http ://docs.sencha.com/extjs/4.2.1/#!/api/Ext.form.field.Checkbox-method-getValue

于 2013-08-29T08:41:16.777 回答
0
{
id:'period',
xtype: 'radio',
fieldLabel: '',
labelSeparator: '',
boxLabel: 'Period',
name: 'employment_type',
inputValue: 'period'
   listeners : {
      change : function(field, newValue, oldValue, options) {
      if(newValue)
      {
         //code executed when checkbox is checked
      }
      else
      {
         //code executed when checkbox is not checked
      }
   }
 }
}
于 2013-08-31T09:59:16.603 回答