Ext.override(Ext.form.CheckboxGroup,{
setValueForItem : function(val){ //カンマで区切られた複数のオプション値
val = "," val ","
this.items.each(function(item) {
if ( val.indexOf(item.inputValue) > -1) {
item.setValue(true);
} else {
item.setValue(false); });
}
,clearValueForItem:function(){ // すべての値をクリア
this.items.each(function(item) {
item.setValue(false);
});
}
});