Datepicker
Datepicker
rocketreading
Posts: 8Questions: 6Answers: 0
in Editor
Is it possible to disable the default datepicker on a date row so I can implement another one (or alternatively explain how I can get the default to work on FireFox)?
Many thanks.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Are we talking about Editor's
date
field type here? It uses the<input type="date">
element which is currently only implemented in Chrome and Edge on desktop browsers. Frustratingly the others show no sign of adding it, and it will never go into IE now.As such, the next version of Editor is going to have its own built in date / time picker which will work on all browsers. I expect it to be available at the end of the week (assuming all goes well with other aspects :-) ).
Until then, the
date
field has support for jQuery UI's date picker if you want to use a Javascript control on all browsers. Just include jQuery UI on your page and Editor will automatically detect it.Allan
Thanks for the info Allan