我有一个文本字段,我需要设置一个工具提示,但是在 extjs 中我发现工具提示出现在鼠标悬停时,是否有可能在鼠标单击时显示工具提示,
感谢提前拉杰什
试试这个样本。
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
});
}
}
}]
});