extjs Ext.form.Checkbox check事件

var checkboxModule = new Ext.form.Checkbox({
    id : "reportId",
   name : "age",

   boxLabel :'年龄',
   width : 90,

   listeners : {

            "check" : function(obj,ischecked){

                                   if (ischecked== true) {
                                        Ext.MessageBox.alert('消息', "选中 getValue=="+obj.getValue()+"  boxLabel"+obj.boxLabel);
                                    }else{
                                         Ext.MessageBox.alert('消息', "取消选中");
                                    }

            }

    }

});

你可能感兴趣的:(checkbox,ExtJs)