摘要: 让标签面板默认不加载的办法:xtype:"tabpanel",deferredRender:false同时不要设置activeTab属性. 阅读全文
posted @ 2011-04-06 10:51 meetrice 阅读(419) 评论(0) 推荐(0)
摘要: 必填项的label后面加星号Ext.form.TextField.override({initComponent:Ext.form.TextField.prototype.initComponent.createInterceptor(function(){if(this.allowBlank===false&&this.fieldLabel){this.fieldLabel+='<fontcolor=red>*</font>';}})});所有的输入项如果配置了allowBlack为false,它的label后面就都会有红星号了,方便日 阅读全文
posted @ 2011-04-06 10:50 meetrice 阅读(2379) 评论(0) 推荐(0)