Hi
I am trying to return IDs for all grid rows in the order the grid is shown in...I have a hidden column which contains the ID.
I first tried with the code below.. where gridData is the datasource.data
for (var i = 0; i < gridData.length; i++) {
var dataitem = gridData[i].Id;
}
The above works, however the ID order is always the same even after fort or filters have been applied.
What am I doing wrong or what property should I be using?
Regards
Mike