How can I get the selected item form a DropDownChoice inside an ListView?
I implemented the chunky code bellow:
val listCustomer: java.util.List[Customer] = customerDAO.listCustomers
item.add(new DropDownChoice("customerSelection", listCustomer, new ChoiceRenderer[Customer]("name")))
In this case I want to get the name property displayed of the model Customer.
Thanks