ps-toolkit-ui 1.4.12 → 1.4.13
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 +2 -2
- 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/row/table.row.component.js +2 -2
- package/esm2015/lib/components/table/table.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2651,7 +2651,7 @@
|
|
|
2651
2651
|
_this.changeRows.emit(_this.row.Data);
|
|
2652
2652
|
}
|
|
2653
2653
|
else {
|
|
2654
|
-
_this.confirmShow.emit({
|
|
2654
|
+
_this.confirmShow.emit({ url: option.Url.replace('{}', _this.row.Data.Id), accept: function () {
|
|
2655
2655
|
if (_this.table.hasChildren && _this.table.childrenAutoLoad && _this.row.Data.ParentId != null) {
|
|
2656
2656
|
_this.loadParent.emit(_this.row.Data.ParentId);
|
|
2657
2657
|
}
|
|
@@ -3123,7 +3123,7 @@
|
|
|
3123
3123
|
return this.changeRows.emit(e);
|
|
3124
3124
|
};
|
|
3125
3125
|
TableComponent.prototype.onConfirmShow = function (e) {
|
|
3126
|
-
this.confirm.show(this.table.l('DeleteConfirm'),
|
|
3126
|
+
this.confirm.show(this.table.l('DeleteConfirm'), e.url, null, e.accept);
|
|
3127
3127
|
};
|
|
3128
3128
|
TableComponent.prototype.changeSort = function (e, s) {
|
|
3129
3129
|
if ($__namespace(e.target).closest('.header-search').hasClass('header-search')) {
|