Hello Folks,
I am trying to perform a DB operation i.e., Insert on click of Save and it should be persisted to DB only after successful validation of form fields. I understand that we can invoke Validate Form, but it actually validates entire form (all sections within a form) and we don't want it to be happen like that. Instead we are trying to do this for each section at a time.
I tried the following in Rule Editor of Save Button:
var errors = [];
panelName.validate(errors);
if(errors.length > 0){
show errorMessage; // Display only error message and no DB operation should be performed
} else {
hide errorMessage;
fdmInsert service; // Perform DB Operation only here
}
However it seems to be not working as I expected, only validations are checked correctly, whereas DB operation is not functioning. But If I try DB operation alone without any validation check, then it is functioning fine. I don't want it to happen like that.
Another alternative I tried is writing separate rules for Validation and DB Operation, but since both rules are getting executed in tandem instead of following order, this doesn't help here.
Please provide your suggestions on how best this can be done. As usual your quick help is appreciated!!
Regards,
Sri Bhargav