The Vaadin docs show how to use the DateField
with java.util.Date
but I want to bind the DateField
with a BeanFieldGroup
to a bean property of Java 8 type java.time.LocalDateTime
. How can I achieve that?
相关问题
- Vaadin Change the default Session Expired Notifica
- Change Maven-driven project based on Vaadin 11 to
- Validation icon not shown in Table fields
- Not able to save uploaded file on server using GOL
- Open pdf file from menubar using Vaadin
相关文章
- Spring Security + Vaadin: How to create custom non
- How to perform an Load Test/Performance Test with
- save file on server, java web application [duplica
- Scoped Spring events possible?
- How to specify a button to open an URL?
- Understanding Vaadin Flow / Vaadin 10
- How to add d3 (javascript) to a vaadin application
- How do I fix 'com.vaadin.DefaultWidgetSet'
Seems like a Vaadin Converter is the way to go:
Inspired by this link which converts between
LocalDate
andDate
. The converter needs to be set to theDateField
viasetConverter
or alternatively via a converter factory.