tnx-shared 5.3.239 → 5.3.240
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/tnx-shared.umd.js +2 -1
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/base/data-form-base.d.ts +1 -0
- package/classes/base/data-form-base.d.ts.map +1 -1
- package/esm2015/classes/base/data-form-base.js +3 -2
- package/fesm2015/tnx-shared.js +2 -1
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/tnx-shared.metadata.json +1 -1
|
@@ -18427,6 +18427,7 @@
|
|
|
18427
18427
|
_this.saving = false;
|
|
18428
18428
|
_this.getDetailPlusUrl = null;
|
|
18429
18429
|
_this.insertPlusUrl = null;
|
|
18430
|
+
_this.updatePlusUrl = null;
|
|
18430
18431
|
_this.dynamicControl = {};
|
|
18431
18432
|
_this.setValidateForm = true;
|
|
18432
18433
|
_this.haveEntityMetadataAPI = true;
|
|
@@ -19207,7 +19208,7 @@
|
|
|
19207
19208
|
DataFormBase.prototype.handleUpdateError = function () {
|
|
19208
19209
|
};
|
|
19209
19210
|
DataFormBase.prototype.getPromiseActionUpdate = function () {
|
|
19210
|
-
return this.setting.baseService.put(this.model.data.id.toString(), this.model.data);
|
|
19211
|
+
return this.setting.baseService.put(this.model.data.id.toString(), this.model.data, this.updatePlusUrl);
|
|
19211
19212
|
};
|
|
19212
19213
|
DataFormBase.prototype.setDefaultValue = function (model) {
|
|
19213
19214
|
var _a, _b;
|