如何在extjs6

时间:2016-07-11 06:17:36

标签: javascript extjs extjs6

我有创建/渲染输入字段的功能,但我不知道如何在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;
    }

我希望你们能帮助我。如果您需要任何其他信息,请告诉我,我会提供。谢谢

2 个答案:

答案 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
        });
};