You have the setOnColumnSort that is fired when a
user clicks on a column header for sorting.
But what “function is called” when the sorting is finish?
You can try onGridReconstructed
method, which called after sorting proceeds.
There is no public event for sortinEnd situation. More
than that, you can’t organize a sorting progress bar, javascript is
single-threaded language, and browser doesn�t render any changes to dom, before
current javascript task finished. (So even in case of both - stat and end
sorting events, the changes which you can implement in those functions will be
visible only after sorting finished).<o:p></o:p>