Could you please set me straight? I am initializing and kendo combobox with a simple call to kendoComboBox() which is causing it to load it's list from the select list that is rendered in html output which is great. I then come along later and trigger a refresh of that list via the following function based on the selection of another combobox...
IIHS.EditPlanningVehicle.RefreshSeries = function (planningYear, makeName) { //Load a new list of options for vehicle definitions $.getJSON($("#mainForm #LoadNewListFormat").val().replace("makeName", makeName).replace("planningYear", planningYear), function (data) { $("#SourceVehicleVariantsId").kendoComboBox(data); });};This works mostly, but ends up creating a second dropdown element when clicking on the dropdown button for the combobox. Is there a better way I can assign a new list to the dropdown, or do I need to switch to using dataSources?
Thanks.