bootstrap-table
bootstrap-table copied to clipboard
Event AFTER table has been updated, e.g. filter search
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
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).