cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

I have a process that interrogates the visible entries in a table and carries out certain alerts and functions.  The SORT event of the table triggers when the SORT is clicked and not after the Sort is complete.  I need to a way to determine when the sort is complete so I can interrogate the visible entries in the table.  I can't seem to find an event SORT COMPLETE on the table.

Does anyone have any ideas?

0 Likes
View Entire Topic
former_member189945
Contributor
0 Likes

Hi Thomas,

Does it work if you add following on sort event handler


SetTimeout(function(){interrogateTable()},0);

Of course, it would work only in case sort worked synchronously.

Another option would be to extend Table method responsible for sorting and dispatchinh sort complete yourself.

Regards,

Kimmo