I am using Kendo Q3 2012 release and jQuery 1.8.2. Keyboard navigation is not working on any of the DropDownLists in my project.
Here's the JavaScript configuration of one of them:
And here's the configuration of one in Razor:
Keyboard navigation works on neither. Is there something else that must be added to the configuration? Are there problems with keyboard navigation when using a DataSource (most of the demos seem to use BindTo)?
Any help in resolving this issue would be greatly appreciated.
Here's the JavaScript configuration of one of them:
$("#TradeItemId").kendoDropDownList({ dataTextField: "Name", dataValueField: "Id", dataSource: { type: "json", transport: { read: getTradeItemsUrl } }, change: biTradeItemIdChanged });
And here's the configuration of one in Razor:
@(Html.Kendo().DropDownListFor(m => m.CrewId) .DataTextField("Name") .DataValueField("Id") .DataSource(s => s.Read("GetCrews", "Task")) .Events(e => e.Change("crewChanged")) )
Keyboard navigation works on neither. Is there something else that must be added to the configuration? Are there problems with keyboard navigation when using a DataSource (most of the demos seem to use BindTo)?
Any help in resolving this issue would be greatly appreciated.