Hi All
I have one form in xcp which takes date as input. i want to restrict the date format for mm/dd/yyyy. is there any solution for it.
Thanks
Raju
Use regular expression for constraint or you can define validator for the control.
Hi,
use below tags inside app.xml, then it will be applicable to all the forms date/datetime control.
<application extends="taskspace/app.xml">
<format>
<datetime>dd/MM/yyyy HH:mm</datetime>
<date>dd/MM/yyyy</date>
</format>
Hi Pramod,
Thank u very much.