How to skip required fields but not the custom validations of fields with a press of button?

I have a form which has a secondary button which is supposed to skip required fields but not the custom validation of fields after pressing that button. Is there a way to do this?

  Discussion posts and replies are publicly visible

Parents
  • Hi ,

    There are two ways by which you can achieve this
    1) You can create expression rule which will validate your data for custom validations and it will return Boolean value true or false, if it
    returns true show the required error message in form validation or section validation field.
    2) Second is after you click on secondary button, in process model you can check for the data and based on your validation, set error
    message and redirect it to screen again with that error message.
Reply
  • Hi ,

    There are two ways by which you can achieve this
    1) You can create expression rule which will validate your data for custom validations and it will return Boolean value true or false, if it
    returns true show the required error message in form validation or section validation field.
    2) Second is after you click on secondary button, in process model you can check for the data and based on your validation, set error
    message and redirect it to screen again with that error message.
Children
No Data