Merge pull request #3748 from Simpler1/patch-6

Refresh table on show
This commit is contained in:
Isaac Connor
2023-09-05 13:05:36 -04:00
committed by GitHub

View File

@@ -420,6 +420,11 @@ function initPage() {
}
});
window.onpageshow = function(evt) {
console.log('Refreshing table');
table.bootstrapTable('refresh');
};
table.bootstrapTable('resetSearch');
// The table is initially given a hidden style, so now that we are done rendering, show it
table.show();