Hi, I need to create a list of dynamically generated entries on the client as the user can control how many entries he needs pressing a + symbol. Functionality in some sense is similar to the "Google Finance Stock Screener" add criteria.
In code I have a model that looks like this:
public class Model
{
public List<string> DynamicList { get; set; }
}
Now the first time the server may provide an empty list. The user from the web browser now can add using the + symbol editors for the dynamic list elements (in this particular case a TextBox).
Do you know of any way to implement this functionality without resorting to a request a new list to the server (that is through either a postback or an AJAX call) on each addition?
Thanks in advance.
PD: Question left open as community wiki for anyone to improve on the question itself.