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
37
votes
8 answers

How to Get Dropdown's Selected Item's text in Kendo UI?

I am using Kendo UI Controls. I want to get the selected text of the dropdown list in jquery. I have used this syntax : $("#ddl").data("kendoDropDownList").text(); I am able to get the text in all browsers except IE. I don't know why this is not…
Ram Singh
  • 6,664
  • 35
  • 100
  • 166
14
votes
7 answers

how to get selected value for Kendo DropDownList

I can't figure out how to determine which item is selected in the my kendo dropdownlist. My view defines it's model as: @model KendoApp.Models.SelectorViewModel The ViewModel is defined as: public class SelectorViewModel { //I want to set this…
ihatemash
  • 1,474
  • 3
  • 21
  • 42
10
votes
2 answers

Rebind DropDownList in KendoGrid, depending on Value Selected in other DropDownList on the same row

This is a common problem, but i dont know how to figure it out with KendoUI widgets and Javascript. I have a KendoGrid whose datasource is coming from an AJAX call to a Web Services. Data is bound to the columns. Two columns (Source and Destination)…
alessalessio
  • 1,224
  • 1
  • 15
  • 28
9
votes
5 answers

How to set default value in Kendo DropDownList

I have a Kendo DropDownList, but strangely enough I can not set its initial value. Html.Kendo().DropDownList() .Name("PersonalCoachName") .BindTo(new SelectList((List)ViewData["coachResources"])) .HtmlAttributes(new { style =…
user585440
9
votes
1 answer

how to set a default value to kendo ui dropdown?

I am using a kendo UI DropDownList control, how can we set a default value to the DropDownList? I have a selected list property in viewmodel as following : public SelectList AuditTypes { get; set; } Then in controller I am populating the selected…
user2206329
  • 2,792
  • 10
  • 54
  • 81
7
votes
3 answers

Angular 2 how disable kendo-dropdownlist

I'm trying to get a kendo-dropdownlist disabled (named ddlChargeType). A user should not be able to directly select a value. But it should be possible to select it programmatically (a valid selection of another dropdown, ddlUoM to trigger the…
Miha
  • 303
  • 3
  • 19
7
votes
3 answers

Creating a kendo dropdown list inside a kendo template

That's my small example of a code. Is there a way to create a drop down list on the div tag, since that div is not actually a DOM object, and therefore I…
Mefhisto1
  • 2,188
  • 7
  • 34
  • 73
5
votes
4 answers

Add Item To kendoDropDownList

I am trying to add a item to the kendoDropDownList, it seems to add the option but not set the value and text. Inspecting the select it just adds a new option Here is what I am using $("#nameList").data("kendoDropDownList") …
Hector
  • 682
  • 3
  • 14
  • 27
5
votes
1 answer

I am not getting placeholder in kendo dropdownlist.Can any one suggest me for solution

I am not getting placeholder in kendo dropdownlist. Can any one suggest me for solution HTML JavaScript var data1 = [ //this part is related to the above html tag {text: "org1", value: "1", color: "#a8a9aa",…
5
votes
1 answer

Angular + Kendo: Default placeholder for drop down list

I was wondering how to set placeholder for drop down list in kendo ui + angular. Currently I have: Template Controller ... $scope.options = { …
Alan Souza
  • 7,475
  • 10
  • 46
  • 68
5
votes
1 answer

Get Count/Length/Size of Kendo UI DropDownList

I am tring to get count of Kendo UI DropDownList but I am not getting right value. By taking count of Kendo UI, I want to remove last item from Kendo DropDownList. I tried following but not working: 1. var dropDown =…
Dhwani
  • 7,484
  • 17
  • 78
  • 139
4
votes
2 answers

Kendo DropdownList server filtering with added parameters

I'm happy if I can get the filtering working client or serverside, but combining sending parameters on the DataSource action and ServerFiltering(true) results in an null filter value (text parameter). The dropdownlist is part of a series which uses…
Chris
  • 170
  • 1
  • 12
4
votes
5 answers

How to bind list of string in kendo dropdownlist

Hello I am using Kendo for ASP.NET MVC. I have list of string containing data [0]="str1" [1]="str2"... and so on Now I want to bind this list of string into kendo dropdownlist. I have bind dropdownlist by list of class with name and id but with…
3 rules
  • 1,359
  • 3
  • 26
  • 54
4
votes
3 answers

How to Prevent Collapsing of Kendo Dropdown List on Page Scroll using Javascript?

I am facing a weird issue and tried to implement 3 solutions but it didn't worked out for me. The problem is with the default functionality of kendo dropdown collapsing on outer page scroll. I want to prevent the collapsing and did some research. I…
Saggy
  • 624
  • 8
  • 23
4
votes
1 answer

asp.net web api call custom method using angularJS

i have a angularJS controller where i put a kendo cascade dropdownlist.For dropdown list value ,on kendo dataSource read i am calling the web api service. For the first field the api GetDivisions() has been called and it response also but for the…
Nazmul
  • 143
  • 14
1
2 3
24 25