I am using ExtJS DataView
for my image gallery. This is my way for item tooltip. It's in tpl
.
new Ext.XTemplate(
'<tpl for=".">',
'<div class="thumb-wrap" data-qtip="{shortname}">',
'<img class="file-image" src="{thumb}" />',
'</div>'
'</tpl>'
);
It's working correctly, but I want to set showDelay
value for my tooltip.
Is there any way to set showDelay
for dataview
item tooltip?