bootstrap-table icon indicating copy to clipboard operation
bootstrap-table copied to clipboard

Event AFTER table has been updated, e.g. filter search

Open UselessGuru opened this issue 1 year ago • 1 comments

Description

Is there an event that tells me when a table has finished updating, e.g. after filters using the filter control? I would like to show a 'wait' cursor while a table is loading or filtering.

I cannot find anything in the documentation.

Example(s)

No response

UselessGuru avatar Oct 13 '24 10:10 UselessGuru

If you want to know when the ajax request is sent to the server, an option is to use jQuery ajax events, like ajaxSend or ajaxStart.

$(document).on("ajaxSend", (evt)=> { console.log("ajaxSend", evt); })

You also have ajax events for success (ajaxSuccess) and error (ajaxError).

rogeriolaa avatar Jul 27 '25 19:07 rogeriolaa