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);
		}
	});

  

原文地址:https://www.cnblogs.com/cocoat/p/5123814.html