当前位置: 代码迷 >> JavaScript >> extjs textfield 增添tooltip或者其他的提示信息
  详细解决方案

extjs textfield 增添tooltip或者其他的提示信息

热度:789   发布时间:2012-09-08 10:48:07.0
extjs textfield 添加tooltip或者其他的提示信息
/**
 * {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);
?
  相关解决方案