I use qTip to display validation errors in a grid. The tooltip appears after an unsuccessful line change and does not disappear until the line is saved or the changes are undone.
The problem is that opening a dialog when a tooltip is visible causes the tooltip to display on top of the dialog box. This is because the z-index is hardcoded to 6000+ for all tooltips, while jQuery dialogs are set to 1000+.
I could fix this problem by changing the hard-set value in qTip to <1000, but then tooltips from the dialog box will appear behind the dialog.
Is there anything I can do other than change the qTip code or use a different hint library?
source
share