日期:2014-05-16 浏览次数:20358 次
/** * {xtype : "uxTextField",fieldLabel : "主 题 词",name : * "dispatchedDoc.keyword",anchor : * '99%',tooltip:{text:'对外单位行文请填写主题词。',title:'提示'} } */ Ext.ns('Ext.ux.form.TextField'); Ext.ux.form.TextField = Ext.extend(Ext.form.TextField, { tooltip : {}, onRender : function(ct, position) { Ext.ux.form.TextField.superclass.onRender.call(this, ct, position); if (this.tooltip.text) new Ext.ToolTip({ target : this.id, trackMouse : false, draggable : true, maxWidth : 200, minWidth : 100, title : this.tooltip.title || '信息提示', html : this.tooltip.text }); } }); Ext.reg('uxtextfield', Ext.ux.form.TextField);?