首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

几个extjs 惯用操作

2012-10-07 
几个extjs 常用操作1: 弹出window 居中Ext.apply(Ext.form.TextField.prototype, {validator : function(t

几个extjs 常用操作
1: 弹出window 居中

Ext.apply(Ext.form.TextField.prototype, {   validator : function(text) {if (this.allowBlank == false&& Ext.util.Format.trim(text).length == 0)return false;elsereturn true;}});Ext.apply(Ext.form.ComboBox.prototype, {validator : function(text) {if (this.allowBlank == false&& Ext.util.Format.trim(text).length == 0)return false;elsereturn true;}});

热点排行