This question is locked. New answers and comments are not allowed.
The following code correctly allows selection of one of the previously used system names:
<%= Html.Telerik().ComboBoxFor(m => m.SystemName).BindTo(new SelectList(Model.SystemNameList, Model.SystemNameDefault)) %>
However - it doesn't allow entry of new (custom) values. What I want is:
1. show values already in database
2. default to the one already used
3. allow entry of a new value
I have features 1 and 2 above - but not 3. How can I allow for new entries, please?
<%= Html.Telerik().ComboBoxFor(m => m.SystemName).BindTo(new SelectList(Model.SystemNameList, Model.SystemNameDefault)) %>
However - it doesn't allow entry of new (custom) values. What I want is:
1. show values already in database
2. default to the one already used
3. allow entry of a new value
I have features 1 and 2 above - but not 3. How can I allow for new entries, please?