I use the PopupDateField vaadin component, and it only allows you to select a Day that is not with time. Is there any other component in vaadin that there is this possibility or is there any way to change PopupDateField to support timing?
This is my code now
PopupDateField popupDateFieldScheduled = new PopupDateField(); popupDateFieldScheduled.setImmediate(false); popupDateFieldScheduled.setWidth("-1px"); popupDateFieldScheduled.setHeight("-1px"); popupDateFieldScheduled.setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
source share