I'm using following datepicker: (http://eternicode.github.io/bootstrap-datepicker/) for my date-Field.
<input class="datepicker" style="width:100px;border-radius: 4px;" type="text" placeholder="Datum" id="startDate"....
I'm using two diffrent formats 'dd.mm.yyyy' and 'mm/dd/yyyy' and everthing is fine. But on mobile devices the keyboard opens when I tap in the input-field.
Because of this I used the native datepicker with <input type='date'....
but this one does not support different formats.
Is there anyway to disable the keyboard on a input type=text
element?
Or do you know any other datepicker with different formats?
Thx for your help
readonly='true'
to the input – Vinaya