0

我有一个文本字段,我需要设置一个工具提示,但是在 extjs 中我发现工具提示出现在鼠标悬停时,是否有可能在鼠标单击时显示工具提示,

感谢提前拉杰什

4

1 回答 1

0

试试这个样本。

Ext.create('Ext.form.Panel', {
        width: 200,
        bodyPadding: 5,
        renderTo: Ext.getBody(),
        items: [{
            xtype: 'textfield',
            name: 'name',
            listeners: {
                render: function(c) {
                    this.getEl().on('mousedown', function(e, t, eOpts) {
                        // call to show your tooltip
                    }); 
                }
            }
        }]
    });​
于 2012-12-09T21:40:23.960 回答