Text input for multi-valued attribute
- by Sean
I need to create an input form that will allow a user to enter any number of values for a particular attribute.
I've tried several approaches, all of which seem to have various levels of failure. The latest model bean looks something like:
public class Product {
private String name;
private String[] tags;
...accessors...
}
The input…