@PeCour ,
to do validation please follow below approach.
- Set Required = True on control
- Set message to display when your interact with control
Now there is two way you can achieve this functionality.
Disable button
- Add button
- Each control has new field “Is Valid”
- Use this field to validate required field
- Set expression on button Disabled as below
!ControlName.IsValid
If Rule condition
- Add button
- Add If else condition to validate as below
Result on user interaction with control
Hope this will help you . Please let me know if you are still unable to do.
Thanks,
Arvind