When the form is submitted values are set to the entity class's attribute.
This is my entity class.
Code:
public class OrderOfSale implements Serializable {
private String[] brokerName;
}
I want to set above 5 text fields values to this 'brokerName' array.
I renamed all text fields name property to be as same name(like brokerName). but all elements of array shows same value which I entered as first text field value.
I want to fill this array form the values of above 5 text field. But seems to be difficult....
please help....
regards,
Dilan.