How to bind properties of Nested Bean List in the Form

Hi, here is the bean i have set as ItemBean in the Form.

public class TreatmentNeed  implements Serializable {

     private List<TreatmentAction> treatmentActions = new ArrayList<TreatmentAction>();

        //setters and getters

Below is the nested bean,

public class TreatmentAction  implements Serializable{
	
	private String name;

	private String description;

  // setters and getters

but in the form i should be able to display properties,

private String name;
private String description;

and i should be able to set the array of treatmentActions containing properties name and description from the Form.
could i expect any great help ?

I didn’t quite get what you want to do. Anyhow, your case seems a bit similar to
this example
. See also the other nested bean examples.