Hello,
I have a grid which is initialized remotely with a JSON respons.
The grid displays correctly but I would like to automaticly trigger a selection of the 1st row of the grid when the data is loaded.
I didn't see any javascript event in the documentation which could be anything like "igGridLoadDataFinished" or whatever...
Is there also a way to trigger a specific row selection in JS ? Because with a thing like "$('#grid' tr[data-id='698']).trigger("click")" no event is fired.
Hello PEO-Stockomani,
You can use igGridSelection.selectRow API in the igGrid.rendered event to select a row from the grid.
Attached you can find sample demonstrating this.
Hope this helps,Martin PavlovInfragistics, Inc.
Hi Martin
Thank you so much, the rendered event fits well !