Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Nested properties using form binder addon ?
Hi,
I am using the latest version of form binder addon to bind the values to a form. Is it possible to bind nested properties like passenger.firstName to a form with form binder.
My sample POJO files
//Booking.java
private Long bookingId;
public Passenger passenger
--getteres and setters--
//Passenger.java
private Long passengerId;
private String firstName;
--getteres and setters--
Now I need to display the firstName from Booking.java (passenger.firstName) in the form. How could it be done?
[Note: I had binded the bookingId to a textField in form using TextField bookingIdField = new TextFiedl() . The bookingIdField will bind the value of bookingId ]
Kindly provide a valuable suggestion.
Thank You.
duplicate to https://vaadin.com/forum/-/message_boards/view_message/1141934