I have a "date input field" that uses the default html5 Date picker
on a form.
This renders and works well on all supported browsers, but on the iPad using "Safari", there is no 'done' option showing when selecting the date.
The 'done' option does appear when using this form on an iPhone however.
The form is built in ATG
, and is a jsp
.
The code I am using for the Date picker
is:
<dspel:input id="treatmentDate${fieldCount}" type="date" min="${minDateCal}" max="${maxDateCal}" bean="${fieldBeanStringDate}.stringTreatmentDate" style="width:184px"></dspel:input>
Like I said, the above code works fine, it's just the absence of a 'done' option that is causing some confusion.
Is there any control that would activate this for an iPad?
Thanks in advance.