Ext过滤空格 重写了组件...

Ext.apply(Ext.form.TextField.prototype, {
validator : function(text) {
if (this.allowBlank == false
&& Ext.util.Format.trim(text).length == 0)
return false;
else
return true;
}
});
04-26 19:42