Does anyone know if in GWT we have a good TimePicker ? In fact I want a widget in order to select hour and minute for GWT.
Thanks
I wrote a Time Picker recently. I wrote it in a hurry, so it's not the best out there, but it works fine.
It attempts to create a HTML5 and if it's not supported by the browser, it parses manually. I have tested it on Chrome and Firefox on PC, and iOS.
Accepted formats are:
it implements HasValue to return the picked time as milliseconds. It also has a method to return the time combined with a given Date object.
Here's the source: https://github.com/srilankanchurro/gwt-stuff/blob/master/gwt-stuff/src/com/sathkumara/client/TimePicker.java
If you have modifications to contribute to this class, please feel free to send me a request on github.