ps-toolkit-ui 1.13.7 → 1.13.9
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 +6 -0
- 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/form/table/form.table.component.js +4 -1
- package/esm2015/lib/components/table/row/table.row.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +6 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3341,6 +3341,9 @@
|
|
|
3341
3341
|
this.table.form.inputs.filter(function (x) { return x.inEditDisabled; }).forEach(function (x) { return x.disabled = true; });
|
|
3342
3342
|
this.table.form.inputs.filter(function (x) { return !x.inEditVisible; }).forEach(function (x) { return x.visible = false; });
|
|
3343
3343
|
this.table.form.inputs.forEach(function (x) { return x.required = x.inEditRequired; });
|
|
3344
|
+
if (this.table.form.onLoad) {
|
|
3345
|
+
this.table.form.onLoad(this.row.Data);
|
|
3346
|
+
}
|
|
3344
3347
|
}
|
|
3345
3348
|
else {
|
|
3346
3349
|
new RequestClass(this.table.environment, this.table.l).send(this.table.getOptionUrl(option.Url.replace('update', 'get'), this.table.permissions.RelatedId, this.row.Data.Id), exports.Method.Post, null, opt, function (result) {
|
|
@@ -6104,6 +6107,9 @@
|
|
|
6104
6107
|
};
|
|
6105
6108
|
FormTableComponent.prototype.changeRows = function (e) {
|
|
6106
6109
|
this.inp.error = null;
|
|
6110
|
+
if (this.inp.onChange) {
|
|
6111
|
+
this.inp.onChange(e);
|
|
6112
|
+
}
|
|
6107
6113
|
};
|
|
6108
6114
|
return FormTableComponent;
|
|
6109
6115
|
}());
|