<af:validateDateRestriction>

af:validateDateRestriction validateDateRestriction validate date restriction DateRestriction daterestriction

type: oracle.adf.rich.DateRestriction

Validate that the date is valid with some given restrictions.

This validator provides hints for the help framework, which cannot be turned off.

This validator also runs on the client (implements org.apache.myfaces.trinidad.validator.ClientValidator).

Attributes

Name Type Supports EL? Description
hintInvalidDaysOfWeek String Yes

Hint message to be used, when giving a hint on the not allowed weekdays.

Parameters:

  • {0} the not allowed weekdays
hintInvalidMonths String Yes

Hint message to be used, when giving a hint on the not allowed months.

Parameters:

  • {0} the not allowed months.
invalidDays org.apache.myfaces.trinidad.model.DateListProvider Yes To specifiy a concrete List of Dates, use the invalidDays attribute and wire it to a DateListProvider implementation. This returns a list of dates, which are invalid.
invalidDaysOfWeek String[] Yes Specify the weekdays which are invalid for your use case. The attribute takes whitespace delimited list of weekdays. Possible values are sun, mon, tue, wed, thu, fri, sat.
invalidMonths String[] Yes Specify the month which are invalid for your use case. The attribute takes a whitespace delimited list of months. Possible values are jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec.
messageDetailInvalidDays String Yes

The detail error message to be used for constructing faces messages, when input value is less than the set invalidDate value.

Parameters:

  • {0} the label that identifies the component
  • {1} value entered by the user
  • {2} the invalid date
Please note: Parameter {1} which specifies the value entered by the user, should never be used in the message if the value is secure, like when secret=true on inputText.
messageDetailInvalidDaysOfWeek String Yes

The detail error message to be used for constructing faces messages, when input value is less than the set invalidDaysOfWeek value.

Parameters:

  • {0} the label that identifies the component
  • {1} value entered by the user
  • {2} the invalid weekday
Please note: Parameter {1} which specifies the value entered by the user, should never be used in the message if the value is secure, like when secret=true on inputText.
messageDetailInvalidMonths String Yes

The detail error message to be used for constructing faces messages, when input value exceeds the invalidMonths value set.

Parameters:

  • {0} the label that identifies the component
  • {1} value entered by the user
  • {2} the invalid month
Please note: Parameter {1} which specifies the value entered by the user, should never be used in the message if the value is secure, like when secret=true on inputText.