我有创建/渲染输入字段的功能,但我不知道如何在EXTjs6中添加工具提示
这是我的功能:
createInputField: function(value, fieldsMarginBottom, readonly) {
var fieldStyle = this.getFieldStyle(readonly);
var nameField = Ext.create('Ext.form.field.Text', {
name: 'name',
readOnly: true,
hideLabel: true,
value: value,
width: this.fieldWidth,
style: {
marginBottom: fieldsMarginBottom + 'px'
},
//My try which is not working
tooltip: {
trackMouse: true,
width: 140,
renderer: function(tip, item){
tip.setTitle('name');
tip.update('Count: ');
}
},
fieldStyle: fieldStyle
});
return nameField;
}
我希望你们能帮助我。如果您需要任何其他信息,请告诉我,我会提供。谢谢
答案 0 :(得分:3)
从the textfield
docs可以看出,字段无法在其配置中添加工具提示,因此您必须手动创建工具提示。
如果您查看the docs for Ext.tip.ToolTip
如何执行此操作,您可能会找到一个小例子,您只需根据the target
configuration description更改目标:
var tip = Ext.create('Ext.tip.ToolTip', {
target: nameField.getEl(),
html: 'Press this button to clear the form'
});
答案 1 :(得分:1)
以上答案是正确的。下面是一般函数的示例,您可以编写一次,并使用属性在项目中的任何位置使用。
addToolTip : function (id, msg) {
new Ext.ToolTip({
target : id,
dismissDelay : 0,
anchor : 'right',
html : msg
});
};