Hi,
is it possible to define max and min values for dateRangeValidator in xml datasource?
I would like to do something like that:
WARN:Validator:validator not understood on item
is it possible to define max and min values for dateRangeValidator in xml datasource?
I would like to do something like that:
Code:
<!-- NOT WORKING --> <field name="validityDateFrom" type="date" required="true" nativeName="VALIDITY_START_DATE" escapeHTML="true"> <validators> <validator type="dateRangeValidator" min="new Date(2014,10,28)" max="new Date(2014,10,29)"/> </validators> </field>
Comment