日期:2014-05-16 浏览次数:20540 次
Ext.EventManager.onWindowResize(function(){
win.center();
});
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;
}
});
Ext.apply(Ext.form.ComboBox.prototype, {
validator : function(text) {
if (this.allowBlank == false
&& Ext.util.Format.trim(text).length == 0)
return false;
else
return true;
}
});