ps-toolkit-ui 1.20.36 → 1.20.38
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 -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/form/select/form.select.component.js +6 -2
- package/esm2015/lib/components/table/row/table.row.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +6 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3711,7 +3711,7 @@
|
|
|
3711
3711
|
this.table.form.isEdit = true;
|
|
3712
3712
|
if (this.table.permissions.Type === exports.PermissionTypeEnum.Form) {
|
|
3713
3713
|
this.table.form.name = opt.name;
|
|
3714
|
-
|
|
3714
|
+
this.table.form.setData(this.row.Data);
|
|
3715
3715
|
this.table.form.setButtons(this.table.form.onTop, true, false, true);
|
|
3716
3716
|
this.table.form.inputs.filter(function (x) { return x.inEditDisabled; }).forEach(function (x) { return x.disabled = true; });
|
|
3717
3717
|
this.table.form.inputs.filter(function (x) { return !x.inEditVisible; }).forEach(function (x) { return x.visible = false; });
|
|
@@ -6059,6 +6059,7 @@
|
|
|
6059
6059
|
}
|
|
6060
6060
|
else {
|
|
6061
6061
|
if (v != null) {
|
|
6062
|
+
console.log(v.map(String), 'v.map(String)');
|
|
6062
6063
|
_this.setValue(v.map(String));
|
|
6063
6064
|
}
|
|
6064
6065
|
}
|
|
@@ -6293,7 +6294,10 @@
|
|
|
6293
6294
|
if (v !== null) {
|
|
6294
6295
|
this.inp.rel.url = this.inp.relUrl.replace('{}', this.inp.value);
|
|
6295
6296
|
if (this.inp.rel.type !== exports.InputType.SelectAutoComplete) {
|
|
6296
|
-
this.inp.rel.load
|
|
6297
|
+
console.log('this.inp.rel.load');
|
|
6298
|
+
this.inp.rel.load(null, function () {
|
|
6299
|
+
console.log('this.inp.rel.load done');
|
|
6300
|
+
});
|
|
6297
6301
|
}
|
|
6298
6302
|
else {
|
|
6299
6303
|
this.inp.rel.url += '_{}';
|