Detect change in Listview of any docType

Hi, I would to trigger a function when the listview is fully loaded and on any change occurs in list view.

what kind of change?

When list is changed/updated or refreshed. This usually happens when we update/change the filters or when rows per page view is changed.

What is the purpose of this trigger?

when we update/change the filters
You have:
cur_list.on_filter_change
but rows changing event will be tricky
inside cur_list.setup_paging_area function you would find an onclick event on the three pagination buttons,
you can use js prototype to rewrite the function by copying old code and adding yours,
but it would be best if you clarified what you want to do, to find a better way.