当前位置: 首页 > 工具软件 > CheckboxGroup > 使用案例 >

java checkbox ext_ExtJS中checkBoxGroup获取和设置值

郎河
2023-12-01

复写CheckboxGroup即可,代码如下

Ext.override(Ext.form.CheckboxGroup,{

//在inputValue中找到定义的内容后,设置到items里的各个checkbox中

setValue : function(value){

this.items.each(function(f){

if(value.indexOf(f.inputValue) != -1){

f.setValue(true);

}else {

f.setValue(false);

}

});

},

//以value1,value2的形式拼接group内的值

getValue : function(){

var re = "";

this.items.each(function(f){

if(f.getValue() == true){

re += f.inputValue + ",";

}

});

return re.substr(0,re.length - 1);

},

//在Field类中定义的getName方法不符合CheckBoxGroup中默认的定义,因此需要重写该方法使其可以被BasicForm找到

getName : function(){

return this.name;

}

});

 类似资料: