Questions tagged [kendo-dropdown]

The Kendo Dropdown represents a richer version of a

You can add this control in HTML page, Asp.Net MVC, PHP and JSP language.

You can create your own custom theme by using this link.

This control have rich client side API (events,methods and property).

Useful links


Related tags

364 questions
3
votes
0 answers

Kendo DropDownList Tab to Select

I have an interesting requirement. For the Kendo DropDownList, I need to have the tab key act as the enter key, while also continuing the tabbing through the control. The sequence should be: In the dropdownlist, the up/down arrow can navigate the…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
3
votes
2 answers

kendo dropdownlist shows optionlabel in dropdown

I am using kendodropdown. I used optionLabel = "Actions" and it is displayed as an option in the dropdown how do I ignore it as a value in dropdown. Is there a way where we can stop or hide optionLabel in kendo dropdownlist to be displayed as an…
Shashi
  • 1,112
  • 2
  • 17
  • 32
3
votes
0 answers

Knockout Kendo and primitive values

I would like to know, why non primitive values are not working in Kendo-Knockout bindings. I have 2 DropDownLists:
Raptor
  • 392
  • 1
  • 4
  • 21
3
votes
2 answers

Kendo UI Dropdownlist slow loading from a large datasource

I'm using Kendo dropdownlist in a template. It loads a list of client names which are used to sign a record. The client name list has 8k entries. The form loads ok but if I select the dropdownlist to change the client name it takes around 10…
user2012783
  • 183
  • 1
  • 7
  • 18
3
votes
1 answer

Disable kendo dropdown list Keyboard navigation

I want to disable kendo drop down list Keyboard navigation which is the default behavior: DropDownList / Keyboard navigation In my specific case I have a drop down inside editable grid and I want to disable changing the highlights next/previous…
MohQut
  • 206
  • 2
  • 10
3
votes
1 answer

MVC Kendo grid pass dropdownlist value to update method

I have a Kendo grid: @(Html.Kendo().Grid().Name("Grid") .DataSource(ds => ds .Ajax() .Model(model => model.Id(m => m.ID)) .Read(read => read.Action("Grid_Read", "Sessions", new {sessionId =…
Shawn
  • 2,356
  • 6
  • 48
  • 82
3
votes
4 answers

get selected id of kendo drop down value

how to get id of selected name from dropdown. whene select Apples then got id 1and select Oranges then 2. this is simple kendo dropdown example.