extjs4 checkbox绑定click事件

var checkbox = new Ext.form.field.Checkbox({
	        			boxLabel:obj.items[i].fname,
	        			inputValue:obj.items[i].fid,
	        			name:'roleright',
	        			labelAlign:'right',
	        			id:obj.items[i].fid,
	        			listeners:{
	        				afterrender:function(obj){
	        					obj.getEl().dom.onclick = function(){
	        						obj.findParentByType("checkboxgroup").previousNode().setValue(obj.getValue());
	        	        		};
	        				}
	        			}
	        		});


你可能感兴趣的:(javascript,ext)