rogeriolaa
rogeriolaa
@WattsUp can you provide a repl or repo with the code you used ?
I mean the application code that generated the bug
It works with this workaround: ` $('#BSTable').bootstrapTable('filterBy', {}, { filterAlgorithm: (row, filters) => row.DateCol.startsWith(formattedDate); }) `
You can use getData and then do whatever you want with it. Example: ``` const $table = $('#table') const $button = $('#button') $(function() { $button.click(function () { var data =...
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)=> {...