I have a form with two DateTimePicker fields. In FireFox they work as expected, but in IE7 if you click in the field and choose a date you get a validation error. However if you refresh the page but this time click on the calendar icon and choose the same date, no error message.
http://www.baysideburnie.com/component/chronocontact/?chronoformname=bookings
http://www.baysideburnie.com/component/chronocontact/?chronoformname=bookings
Hi BradC,
Please try adding a value attribute to the fields
Bob
PS The maxlengths look weird?
Please try adding a value attribute to the fields
<input name="CheckIn" type="text" id="CheckIn" class="dateField required" maxlength="2147483647" value='' />
The 'required' validator checks that and I think that not having it may cause the problem.Bob
PS The maxlengths look weird?
Hi Bob
Had to put a space in the value to get it working
<input name="CheckIn" type="text" id="CheckIn" class="dateField required" maxlength="200" value=" " />
As for the weird maxlength, that was put there by the Wizard, so I thought it must be important. I have since change it and it still works.
Thanks for your help
Had to put a space in the value to get it working
<input name="CheckIn" type="text" id="CheckIn" class="dateField required" maxlength="200" value=" " />
As for the weird maxlength, that was put there by the Wizard, so I thought it must be important. I have since change it and it still works.
Thanks for your help
This topic is locked and no more replies can be posted.