This is a migrated thread and some comments may be shown as answers.

DropDownList Keyboard Navigation not working

3 Answers 170 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Chad
Top achievements
Rank 1
Chad asked on 11 Jan 2013, 04:02 PM
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:

            $("#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.

3 Answers, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 15 Jan 2013, 12:18 PM
Hello Chad,

I tried to reproduce the problem but to no avail - the DropDownList's navigation is working as expected. For your convenience attached is my test page - could you please check it and let me know if I missed something? Thank you in advance for your cooperation.
 
Regards,
Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Chad
Top achievements
Rank 1
answered on 15 Jan 2013, 04:12 PM
This turned out to be a conflict with the jquery hotkeys plugin. Thank you for your help.
0
Trent Jones
Top achievements
Rank 1
answered on 03 Jun 2013, 05:35 PM
I have the exact same problem.  Did anyone figure out a workaround to continue to use jQuery.hotkeys plugin?

Thanks,
Trent
Tags
DropDownList
Asked by
Chad
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Chad
Top achievements
Rank 1
Trent Jones
Top achievements
Rank 1
Share this question
or