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.