ps-toolkit-ui 1.20.14 → 1.20.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ps-toolkit-ui.umd.js +4 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/table.class.js +5 -2
- package/fesm2015/ps-toolkit-ui.js +4 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/table.class.d.ts +1 -0
- package/package.json +1 -1
|
@@ -9221,6 +9221,7 @@
|
|
|
9221
9221
|
this.withCheck = false;
|
|
9222
9222
|
this.withSelect = false;
|
|
9223
9223
|
this.showExtraButtons = true;
|
|
9224
|
+
this.firstLoad = true;
|
|
9224
9225
|
this.extraButtons = [];
|
|
9225
9226
|
this.form = null;
|
|
9226
9227
|
this.searchForm = null;
|
|
@@ -9488,7 +9489,9 @@
|
|
|
9488
9489
|
this.title = this.listAccess.Name;
|
|
9489
9490
|
this.url = this.getUrl(this.listAccess.Url);
|
|
9490
9491
|
if (this.permissions.Type !== exports.PermissionTypeEnum.Form) {
|
|
9491
|
-
this.
|
|
9492
|
+
if (this.firstLoad) {
|
|
9493
|
+
this.load();
|
|
9494
|
+
}
|
|
9492
9495
|
}
|
|
9493
9496
|
else {
|
|
9494
9497
|
this.loading = false;
|