:: Forum >>

Which event is raised after sorting a column

Hi,
I need to update a second control dependend on the order of the rows in the grid.
Im using obj.getRowIndices() to get the order of the rows, but this functions return the right values just after sorting is done.
All events that I've found in the documentation like obj.onHeaderClicked or obj.onHeaderMouseUp are raised before sorting is done.
heis
Thursday, June 8, 2006
Can you use onRowIndicesChanged?

obj.onRowIndicesChanged = function(rowIndicesArray){
    alert(rowIndicesArray);
}
Alex (ActiveWidgets)
Friday, June 9, 2006
works very well, thx
heis
Tuesday, June 13, 2006

This topic is archived.


Back to support forum

Forum search