I have an interactive grid which can be sorted on few columns.
I want to execute a jquery script every time after a column is sorted but i am unable to find the event after which my script should be executed.
So i need to execute something like :
$("'#my_ig").on( "interactivegridsorting", function( e ) {
execute_my_js();
});
Any help is highly appreciated. Thanks in advance!