ps-toolkit-ui 1.15.81 → 1.15.83
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 +3 -1
- 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/classes/form.class.js +4 -2
- package/fesm2015/ps-toolkit-ui.js +3 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -2210,9 +2210,11 @@
|
|
|
2210
2210
|
this.url = this.baseUrl;
|
|
2211
2211
|
this.setButtons(this.onTop, false, insertAccess, false);
|
|
2212
2212
|
this.clearInputs();
|
|
2213
|
-
|
|
2213
|
+
console.log(this, this.isEdit);
|
|
2214
|
+
if (this.onTop && !this.isEdit) {
|
|
2214
2215
|
this.focus();
|
|
2215
2216
|
}
|
|
2217
|
+
this.isEdit = false;
|
|
2216
2218
|
};
|
|
2217
2219
|
FormClass.prototype.clearInputs = function () {
|
|
2218
2220
|
this.inputs.filter(function (x) { return x.type !== exports.InputType.Constant; }).forEach(function (inp) {
|