Scenario:
How to have a Time format restriction for the adf inputText component?
Solution:
To have the time format restriction to restrict the time for upto 23:59 we will have a regex pattern for the af:inputText
<af:inputText label="" id="time" simple="true" value="" contentStyle="width:30px;" maximumLength="5"> <af:validateRegExp pattern"([01][0-9]|2[0-3]):[0-5][0-9]" messageDetailNoMatch="Time Format must match HH:MM" hint="Time Format: HH:MM"/> </af:inputText>