We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cc16cc commit e3e906eCopy full SHA for e3e906e
Vue/src/App.vue
@@ -242,13 +242,13 @@ export default {
242
if (!result.isValid)
243
return;
244
245
- if (this.isNewRecord)
246
- this.employeeStore.insert(this.formData);
247
- else
248
- this.employeeStore.update(this.formData["ID"], this.formData);
+ if (this.isNewRecord)
+ this.employeeStore.insert(this.formData);
+ else
+ this.employeeStore.update(this.formData["ID"], this.formData);
249
250
- this.grid.refresh(true);
251
- this.hidePopup();
+ this.grid.refresh(true);
+ this.hidePopup();
252
},
253
hidePopup() {
254
this.visible = false;
0 commit comments