Hello,
I am using a tooltip for grid header just as described here: http://www.jqwidgets.com/community/topic/jqxgrid-combined-with-jqxtooltip/
It works well, just one thing is bugging me. I want to configure the autohide in a way that the tooltip only disappears when the user leaves the header element.
$("#jqxgrid .jqx-grid-column-header").each(function () {
if (jsontooltip[$(this).text()])
$(this).jqxTooltip({ position: 'mouse', autoHideDelay: 0, content: jsontooltip[$(this).text()] });
});
In that case the tooltip ignores the autoHideDelay completely, it disappears after 3 seconds. But even in the fiddle from auotHideDelay, if I change the value from 100 to 0, the tooltip is shown and disappears immediately. Per api it should only disappear if the cursor leaves the element. Am I doing something wrong and why does the example above ignore the autoHideDelay?
Regards
Klaus