/**重写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);
}
});