|
|
@@ -172,6 +172,7 @@ $.BootstrapTable = class extends $.BootstrapTable {
|
|
|
super.init()
|
|
|
}
|
|
|
|
|
|
+
|
|
|
initBody () {
|
|
|
super.initBody()
|
|
|
if (this.options.filterControl) {
|
|
|
@@ -182,6 +183,16 @@ $.BootstrapTable = class extends $.BootstrapTable {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ load (data) {
|
|
|
+ super.load(data)
|
|
|
+
|
|
|
+ if (!this.options.filterControl) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ UtilsFilterControl.createControls(this, UtilsFilterControl.getControlContainer(this))
|
|
|
+ }
|
|
|
+
|
|
|
initHeader () {
|
|
|
super.initHeader()
|
|
|
if (!this.options.filterControl) {
|