with the latest two builds the tooltip does not work anymore; is there a way to enable it again? maybe i need to change something in the new lib?
What i want is at columns with long text (or all columns) with mouse over to see the whole text
2 Answers
It is disabled due to performance issue in rendering higher number of rows on a page.
If you want to enable, in lib/inc/jqgrid_dist.php … search and replace:
// if ellipsed or icons -> show tooltip (disabled as too slow)
if (false && element[0].tagName.toLowerCase() == “td” && element.outerWidth() < element[0].scrollWidth
with:
// if ellipsed or icons -> show tooltip (disabled as too slow)
if (element[0].tagName.toLowerCase() == “td” && element.outerWidth() < element[0].scrollWidth
Your Answer