ps-toolkit-ui 1.18.62 → 1.18.64
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 +14 -8
- 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/components/table/table.component.js +15 -9
- package/fesm2015/ps-toolkit-ui.js +14 -8
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3979,14 +3979,20 @@
|
|
|
3979
3979
|
}
|
|
3980
3980
|
}
|
|
3981
3981
|
if (x.type === exports.InputType.Submit) {
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3982
|
+
x.onClick = function () {
|
|
3983
|
+
if (_this.table.searchForm.onBeforeSubmit && !_this.table.searchForm.onBeforeSubmit()) {
|
|
3984
|
+
return;
|
|
3985
|
+
}
|
|
3986
|
+
_this.table.load(x);
|
|
3987
|
+
$__namespace(_this.tableDiv.nativeElement).removeClass('show-expert-search');
|
|
3988
|
+
};
|
|
3989
|
+
_this.table.searchForm.submit = function () {
|
|
3990
|
+
if (_this.table.searchForm.onBeforeSubmit && !_this.table.searchForm.onBeforeSubmit()) {
|
|
3991
|
+
return;
|
|
3992
|
+
}
|
|
3993
|
+
_this.table.load(x);
|
|
3994
|
+
$__namespace(_this.tableDiv.nativeElement).removeClass('show-expert-search');
|
|
3995
|
+
};
|
|
3990
3996
|
}
|
|
3991
3997
|
});
|
|
3992
3998
|
}
|