This question is locked. New answers and comments are not allowed.
I have the following Razor markup for a dropdown in my view, but when the view renders, the dropdown arrow on the ComboBox is not operational, i.e. although I know there are 2 items in the dropdown, it doesn't drop down when I click the arrow. I know there are 2 items because I can successfully set SelectedIndex to 0 or 1.
<div class="editor-field">
@(Html.Telerik().ComboBox()
.Name("Provinces")
.SelectedIndex(1)
.BindTo(new SelectList(Model.ProvinceList, "ProvinceId", "Name"))
.ClientEvents(events => events.OnChange("provinceChanged"))
)
</div>