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
50
Trying to open igDialog right near row I clicked - how do I get row coordinates?
posted

I would like to open an igDialog right near the ROW I clicked in igGrid. Currently I am working on "activeRowChanged" event to capture the click.

How do I get ROW coordinates and/or current height/width of the row? I do something like this right now:

activeRowChanged: function (ui, args) {
var msg;
msg='activeRowChanged event fired. Row Index = ' + args.row.index;
$("#igDialog1").igDialog("open");
openWin(msg);
gridData=[];
gridData=fillArray();
$("#grid").igGrid('option', 'dataSource', gridData); // Change data sourse - refresh
}

I am using args.row.index to get INDEX of the row, but what other properties the row can return me? Maybe coordinates as well?

Please help me out on this.

Thanks!