Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
455
iggridtooltipstooltipshowing - row index is always undefined
posted
I am trying to use the iggridtooltipstooltipshowing event on an igTreeGrid to intercept the tooltip and customize it, however I am finding that the property that the documentation claims to contain the row number is always undefined.
Given the following...
$(document).delegate("#grid2", "iggridtooltipstooltipshowing", function (evt, ui) {        

            var columnIndex =  ui.columnIndex;

            var columnKey = ui.columnKey;

            var tooptipElement = ui.element;

            var rowIndex = ui.index;

            var tooltipText = ui.tooltip; 

            ui.tooltip = "Bla Bla";

        });

ui.index is always undefined.  Can anyone tell me why this property is always undefined?  I need to know the row number so that I can look up a value specific to the row/cell where the tooltip is showing.

Parents Reply Children
No Data