This question is locked. New answers and comments are not allowed.
On initial entry (create) I want my combo to stay empty. Once the user has entered enough data, I force an Ajax/JQuery partial update on data from an @Html.EditorFor control.
it's at this point I want to trigger the population of the combo.
placing something like
on the combo will result in the method being performed regardless. I thought I might be able to do something on an 'onFocus' event but there isn't one.
How can I make this work such that the combo gets populated once I have placed a value into my EditorFor Control?
it's at this point I want to trigger the population of the combo.
placing something like
.DataBinding(binding => binding.Ajax().Select("GetDropDownCC", "RoadRisk"))How can I make this work such that the combo gets populated once I have placed a value into my EditorFor Control?