-
28 Nov 2011 5:38 PM #1
grid cell tooltips in ext4 - renderer args changed
grid cell tooltips in ext4 - renderer args changed
In ext3, I used to frequently add a tooltip to cells in a given column by adding a renderer to the column, to wit:
This no longer works- how can this be done in ext4?Code:renderer: function(value, cell){ cell.attr = 'ext:qtip="' + value + '"'; }
This is a really nice feature for the user- long text pops up when you mouseover. Gotta find a way to do this!
Thanks-
LK
-
29 Nov 2011 1:23 AM #2
-
10 May 2012 5:35 AM #3
Works:
Code:renderer: function(value, cell){ cell.tdAttr = 'data-qtip="' + value + '"'; return value; }


Reply With Quote