EXTjs4 动态设置 button pressed 状态切换

  • Post author:
  • Post category:其他



有一组按钮,同时只能有一个按钮选中,代码




	/** 按钮 **/
	var btn1 = Ext.create('Ext.Button', {
		xtype: 'button',
		pressed: true,
		toggleGroup: 'btnGroup',
		text: '按钮1',
		renderTo: 'div1',
		handler : function(thisBtn) {
			thisBtn.toggle(true);
			
			var status = thisBtn.pressed;
			console.log(status);
		}
	});
	
	var btn2 = Ext.create('Ext.Button', {
		xtype: 'button',
		toggleGroup: 'btnGroup',
		text: '按钮2',
		renderTo: 'div2',
		handler : function(thisBtn) {
			thisBtn.toggle(true);
		}
	});

完成



版权声明:本文为cdmamata原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。