GWT Time Picker?

后端 未结 8 1754
青春惊慌失措
青春惊慌失措 2020-12-13 07:19

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

8条回答
  •  無奈伤痛
    2020-12-13 07:57

    The gwt incubator has an alright time picker

    The code would be something like the example given:

    // A TimePicker with no "AM/PM" and no "seconds" field and using 24H formatting for "hours" field
    TimePicker timePicker = new TimePicker(new Date(), null, DateTimeFormat.getFormat("HH"), DateTimeFormat.getFormat("mm"), null);
    

提交回复
热议问题