4
我試圖在下面的工具提示上添加點擊監聽器。 我不希望鼠標懸停時顯示工具提示。相反,它需要按鈕單擊顯示。 我是否必須在偵聽器中添加處理函數?extjs4在按鈕單擊而不是鼠標懸停時顯示工具提示
{
xtype: 'button',
cls:'my-btn',
iconCls:'question',
src:'../www/css/slate/btn/question.png',
padding: '5 0 0 0',
listeners: {
render: function(cmp) {
Ext.create('Ext.tip.ToolTip', {
closable:true,
hideDelay : 3000,
padding: '0 0 0 0',
maxWidth:400,
width:800,
target: cmp.el,
html: "<b>read-only</b>:Users will have read only access to all pages",
getTargetXY: function() {
return [810, 340];
}
});
}
}
},
謝謝AndreKR!這對我來說非常合適! – Micheal
你給靜態位置'showAt',如果我想要顯示從鼠標點擊或按鈕獲得的動態位置? –
完全相同,只需輸入要顯示的工具提示的座標即可。 – AndreKR