日期:2014-05-16 浏览次数:20439 次
Ext.onReady(function() {
    var panel=new Ext.Panel({
    	renderTo:'panel',
    	frame:true,
    	width:80,
    	height:80,
    	title:'Radio',
    	items:[{
    	    id:'radio1',
    	    xtype:'radio',
    		boxLabel:'选项一',
    		name:'radio',
    		inputValue:'1',
    		checked:true
    	},{
    	    id:'radio2',
    	    xtype:'radio',
    	    boxLabel:'选项二',
    		name:'radio',
    		inputValue:'2'
    	}]
    });
    Ext.getCmp('radio1').on('focus',function(){
    	console.log("info");
    });
    Ext.getCmp('radio2').on('focus',function(){
    	console.log("info");
    });
});