Is there a pre order event
Is there a pre order event

I have a table with a column that is a numeric input. When a value changes I update the data source, set table data source again and redraw it. If the input column is also the sorting column then the value just entered will usually disappear because the draw function will re order the rows.
I would like the updated row to remain where it is until the user decides to sort the table again. So, is there a way that I can move the update logic from the input control changed event to some pre sort event so the data source isn't updated until the user clicks a column to sort and then the data source is updated from the input control?
Answers
Hi,
Have a look at this example which demonstrates how what you are looking for can be done.
Allan
That is exactly what I want. Thank you so much.