我需要一个make代码来检查是否检查了ExtJS Checkbox

时间:2013-08-29 08:16:52

标签: extjs

我需要一个make代码来检查是否检查了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。付款。

2 个答案:

答案 0 :(得分:0)

RadioPeriod.getValue()

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

答案 1 :(得分: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
      }
   }
 }
}