EXTJS 6 必填项加星号*

/**重写ext filed组件, 实现表单必填项加红色*星号**/
	Ext.override(Ext.form.field.Base,{
		initComponent:function(){
			if(this.allowBlank!==undefined && !this.allowBlank){
				if(this.fieldLabel){
					this.fieldLabel += '<font color=red>*</font>';
				}
			}
			this.callParent(arguments);
		}
	});

  

posted @ 2016-01-12 11:31  旋转的梦  阅读(1844)  评论(0编辑  收藏  举报