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

Loading message does not display when using pipeline extension

Open doug-the-guy opened this issue 2 years ago • 0 comments

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

doug-the-guy avatar Feb 21 '23 18:02 doug-the-guy