ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: lsl on March 16, 2017, 04:38:10 pm

Title: How to get ui.rowData for the event of selectEnd
Post by: lsl on March 16, 2017, 04:38:10 pm
It works fine when I use

rowDblClick: function (event, ui) {            
                ui.rowData[key];                                       
}

However, if I change to use the selectEnd,
selectEnd : function (event, ui) {                           
}

I can only get the change by "ui.selection._areas[0].firstR" and ui.rowData don't work.
How can I do about this?


Title: Re: How to get ui.rowData for the event of selectEnd
Post by: paramvir on March 16, 2017, 04:57:50 pm
rowData can be calculated from rowIndx as

grid.getRowData( {rowIndx: rowIndx })