ps-toolkit-ui 1.18.61 → 1.18.63
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 +7 -6
- 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 +8 -7
- package/fesm2015/ps-toolkit-ui.js +7 -6
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3980,15 +3980,16 @@
|
|
|
3980
3980
|
}
|
|
3981
3981
|
if (x.type === exports.InputType.Submit) {
|
|
3982
3982
|
x.onClick = function () {
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
};
|
|
3987
|
-
_this.table.searchForm.submit = function () {
|
|
3988
|
-
console.log(22222);
|
|
3983
|
+
if (_this.table.searchForm.onBeforeSubmit && !_this.table.searchForm.onBeforeSubmit()) {
|
|
3984
|
+
return;
|
|
3985
|
+
}
|
|
3989
3986
|
_this.table.load(x);
|
|
3990
3987
|
$__namespace(_this.tableDiv.nativeElement).removeClass('show-expert-search');
|
|
3991
3988
|
};
|
|
3989
|
+
// this.table.searchForm.submit = () => {
|
|
3990
|
+
// this.table.load(x);
|
|
3991
|
+
// $(this.tableDiv.nativeElement).removeClass('show-expert-search');
|
|
3992
|
+
// };
|
|
3992
3993
|
}
|
|
3993
3994
|
});
|
|
3994
3995
|
}
|