bootstrap-table
bootstrap-table copied to clipboard
Loading message does not display when using pipeline extension
Bootstraptable version(s) affected
1.21.2
Description
When using the pipeline extension, the loading message is never shown. Instead the default "No matching records found" is displayed, even when it's waiting for the ajax response.
I just upgraded from 1.14.1 so this bug was introduced somewhere between that version and 1.21.2.
Example(s)
No response
Possible Solutions
This is a simple fix I tracked down to this line bootstrap-table-pipeline.js#L1720
if (!silent) {
this.$tableLoading.show();
}
Should be:
if (!silent) {
this.showLoading();
}
Additional Context
No response