【Extjs】动态单选按钮

来源:互联网 发布:手机商城网页源码下载 编辑:程序博客网 时间:2024/06/17 08:34
createEvent : function() {var me = this;me.groupPanel = Ext.create('Ext.form.Panel', {title : 'RadioGroup Example',width : 300,height : 125,items : [{xtype : 'radiogroup',fieldLabel : 'Two Columns',columns : 2,name : "group",vertical : true,items : [{boxLabel : 'Item 1',name : 'rb',inputValue : '1'}, {boxLabel : 'Item 2',name : 'rb',inputValue : '2',checked : true}]}]});return me.groupPanel;},addGroupItems : function(){var me = this;var group = me.groupPanel.query("radiogroup[name = 'group']")[0];group.add(new Ext.form.field.Radio({ boxLabel: "123", name: 'rb', inputValue: "123" }));}


0 0
原创粉丝点击