Hi,
yes, you can use section 'Validaction' in the properties of your element.
In section 'Validaction' you can verify or check everything that you want for that element before the user submits the Form, validation happens when the user clicks on the button submit.
Navigate to the element for which you want to do validation, properties, scroll down to the section Validation and select type custom, and insert this code below in the code box:
function ff_formName_validation(element, message)
{
if (element_fails_my_test) {
if (message=='') message = element.name+" faild in my test.\n"
ff_validationFocus(element.name);
return message;
} // if
return '';
} // ff_Message_validation
-function ff_formName_validation(element, message)-instead 'FormName' insert name of element (Not title).
If you need more help with this, let me know and I will help you!
Please see
this link
Regards,
Mirko