我正在尝试将 QuickTip 添加到表单字段,但找不到使我的代码正常工作的方法。首先,我尝试使用一个qtip
属性
{
fieldLabel: 'Last Name',
qtip:'This tip is not showing at all',
name: 'last'
}
然后使用Ext.tip.ToolTip
类:
Ext.create('Ext.tip.ToolTip', {
target: 'rating_field',
anchor: 'right',
trackMouse: true,
html: 'This tip is not showing at all'
});
Ext.QuickTips.init();
这是一个带有源代码的 jsfiddle:jsfiddle