I have the following line of HTML that works fine.
<select style="margin-left: 20px" id="agencies" data-bind="options:agencies, value: selectedAgency, optionsText:'name'"> </select>
When I enable the Kendo UI combo box like this, I lose all entries in the combo box:
$("#agencies").kendoComboBox();
Anyone know how I can fix this?
TIA.