When using filters sometimes you want to hook the filtering action and run your own code after the widget refreshed after the filtering.
For this you can use this event:
var objGrid = jQuery("#grid_widget_id")
objGrid.on("uc_ajax_refreshed",function(){ //put your code here });
If you have several widgets in the page, you can also use this event, on the “body”, would be easier in some cases.
jQuery("body").on("uc_ajax_refreshed_body",function(event, objGridWidget){ //write your code here });