Detailed descriptions, data types, allowed values and other properties can be seen in Service Studio.
The standard built-in OutSystems validations apply as usual. But if custom validations are required (e.g. if the percentage value can’t be less than 15%) then these can be done using client actions exposed by the component to validate the two inputs with a custom validation message as shown in the demo. This is similar to the OutSystems Dropdown Search widget client actions/APIs. Client actions to check the validity and change the validity and the validation message displayed are per input fieldto allow maximum flexibility.
Below is the demo logic to show how the custom validation was done. First it checks to see if the percent input field was valid or not (using the CheckIfPercentageValid client action) based on standard OutSystems validations in which case we let those take precedence (this is the developers choice though) and if valid then it applies the custom validation to set as invalid if the percentage value is less than 15% (using the SetCustomPercentageValidation client action). It is important to note that doing the custom validations does not automatically invalidate the parent form; this must be done manually in the same way one would do when using the OutSystems Dropdown Search widget.