ps-toolkit-ui 1.13.8 → 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.
@@ -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) {