A button click trigger the form validation what is not I expected

0
when I click the button 【select】,the form  valid immediately .But i only want this happen when i click 【save】。How to fix it ?【select】is try to show a new page Thank you  
asked
1 answers
0

Hi hu mengmeng,

Have you added the validation on Page level ( Added Required Validation on the Title Text box) .

One of the important best practice is to handle validation in the save Microflow. 

If you are using Default Save button  then change it to a microflow. 

Steps:

  1. Double click the save button and change the onClick action to call a microflow.
  2. In the microflows do the Validation and if the necessary validation are passed , commit the object and add a Close page activity at the end. 

For you Reference : Microflow Validation

 

answered