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
4
votes
1 answer

Kendo Dropdownlist Placeholder

I am using a kendo dropdownlist and I need a placeholder for the dropdownlist which shouldn't appear in the list when I select the dropdown. I tried using optionLabel but this value shows up in the list. var $dropdownElement; $dropdownElement…
Shashi
  • 1,112
  • 2
  • 17
  • 32
4
votes
1 answer

Kendo UI DropDownList - change confirmation

I'm trying to do very simple thing: when user changes the value of the dropdown list I'd like to display the confirmation. I've tried doing this: change: function () { return confirm("Czy chcesz zapisać tę zmianę?"); } and the same thing using…
Lukasz Lysik
  • 10,462
  • 3
  • 51
  • 72
4
votes
1 answer

Twitter Bootstrap column definition is not properly applied to Kendo DropDown

I have created a fiddle where you can see that the size of the Kendo DropDown is not set as expected. How I have to modify the code to get the expected behaviour? regards HTML Code:
Marko
  • 1,291
  • 1
  • 21
  • 37
4
votes
1 answer

Pass a custom CSS class to the Kendo's Dropdown Widget

I want to pass a custom CSS class to the dropdown HTML container that gets generated when calling .kendoDropDownList() method on a element. As you'll see in this fiddle ( http://jsfiddle.net/lav911/n9V4N/ ) the HTML I'm…
Zubzob
  • 2,653
  • 4
  • 29
  • 44
4
votes
4 answers

Kendo DropDownList - add class at the optionLabel

Given following Kendo dropdown I would like to add a class onto the optionLabel select, so when ddl expanded I can visually distinguish in between what is the option label and what are the options. Ideally this should be done from dataBound and…
Vojtiik
  • 2,558
  • 1
  • 17
  • 21
4
votes
3 answers

Adding a Dropdown inside Kendo Grid

I'm trying to add a DropDown inside kendo grid but it displays a TextBox @(Html.Kendo().Grid((IEnumerable)Model.documents_lst) .Name("grid").Scrollable() .Columns(columns => { …
chamara
  • 12,649
  • 32
  • 134
  • 210
4
votes
1 answer

Kendo DropDownList in Grid shows value after selection

I'm trying to use a drop-down list in my grid. This is my grid definition: $("#grid").kendoGrid({ editable: true, dataSource: { data: data, schema: { model: { fields: { Name: { …
user3308844
  • 43
  • 1
  • 1
  • 3
4
votes
2 answers

kendo ui select a specifix index/text during first load

The problem i am running into is that during the first load of the page i want to read the value from cookies if found, i want to change the theme that was stored in the cookie. not only want to change the them but i also want to select that item in…
NSS
  • 1,835
  • 2
  • 29
  • 66
3
votes
1 answer

How can i prevent kendo dropdownlist from changing its value on valueChange or selectionChange events in angular 4+

I have a kendo dropdown list, i am displaying a Dialog confirmation box before changing the dropdown value. It is working fine but the dropdown value is getting changed despite doing anything on the dailog box, How can i stop value changing on…
3
votes
1 answer

KendoUI Grid: Custom dropdown provider shows no text in view mode

I’m using Kendo UI v2016.3.1118 for my web application. I use the editing capabilities (mode: “incell”) in the Kendo UI grid. I have created a grid with editing textbox, date, and numeric values and it works fine. What I want to do now is to apply…
Stefan
  • 31
  • 3
3
votes
1 answer

How to make my kendo dropdown list readonly?

I have a dropdownlist and i need to make it read only when user opens the page.But it needs to be enabled after click on edit icon.
user7131132
3
votes
1 answer

Kendo UI [DropDownList] - Filter search, show message if search item did not found

I am using Kendo UI DropDownList with search filter... How can I replace search icon with '+ Add' link with 'No items available' message if searched item is not available in the dropdown... Online Demo Please refer the below image for more…
Reddy
  • 1,477
  • 29
  • 79
3
votes
0 answers

How can we implement to add a select all option in Kendo Dropdownlist

How to add an option "All" in kendo dropdownlist. @(Html.Kendo().DropDownList() .Name("SampleDDL") .DataTextField("Name") .DataValueField("Id") .DataSource ( datasource => datasource.Read(read => read.Action("GetNames",…
3
votes
1 answer

Knockout-Kendo dropdownlist Ajax observableArray get selected item name

My application is MVC 5, I use the following Knockout-kendo dropdown list: var ViewModel = function () { var…
hncl
  • 2,295
  • 7
  • 63
  • 129
3
votes
0 answers

Endless Kendo Combo/DropDownList box Virtual Mode Angular Issues

I'm pretty disappointed with the kendo dropdown and combobox and it's functionality in general and angular in specific: The documentation is pretty terrible for angular and things like how to properly put ValueMapper settings inline. I've hacked…
James Hancock
  • 3,348
  • 5
  • 34
  • 59
1
2
3
24 25