Questions tagged [kendo-combobox]

The Kendo ComboBox represents a richer version of a

The Kendo ComboBox is a Javascript-based control that represents a richer version of a <select> element, providing support for local and remote data binding, item templates, and configurable options for controlling the list behavior.


Related tags

192 questions
13
votes
4 answers

Kendo UI Combo Box Reset Value

I'm using the Kendo UI ComboBoxes in cascade mode to build up a filter that I wish to apply. How do I clear/reset the value of a Kendo UI ComboBox? I've…
ciantrius
  • 683
  • 1
  • 6
  • 21
7
votes
1 answer

Difference between SelectionChange and ValueChange events of Kendo-Combobox

I have just started working on Kendo Controls in Angular. I have found an example here where its making use of both selectionChange and valueChange event. So, my question is what is the difference between these both and when to use them? Thank you
Pranay
  • 432
  • 4
  • 14
7
votes
5 answers

how i get select value from kendo comboBox

i have implented Kendo ComboBox but struggling to get selected value .... $("#_FeeScheme_Input").kendoComboBox({ minLength: 1, filter: 'contains', dataTextField: "FeeSchemeDescription", dataValueField:…
K.Z
  • 5,201
  • 25
  • 104
  • 240
6
votes
2 answers

How do I refresh a Kendo UI combo box?

I have an ASP.Net MVC Kendo UI combobox that is databound to a table with 1000's of records. I've set the MinLength property to 5 so I only return relevant results. The problem is, the user might need to change the text value all together. Is there…
5
votes
3 answers

Dynamically refresh KendoUI DropdownList

I've the following three KendoUI dropdown list boxes; @(Html.Kendo().DropDownList() .HtmlAttributes(new { style = "width:auto;height:25px" }) .OptionLabel("Make (any)") .Name("Make") .DataTextField("Name") …
neildt
  • 5,101
  • 10
  • 56
  • 107
5
votes
1 answer

Kendoui MVC EditorTemplateName do not work in PopUp edit mode

I want to use EditorTemplateName for foreign key Column in KendoUi grid. when Grid Edit Mode is InLine all thing is OK and My Template Loaded. but when change mode to Popup not load template. how can fix it? @(Html.Kendo().Grid() …
Morteza
  • 2,378
  • 5
  • 26
  • 37
4
votes
0 answers

Kendo ComboBox value template?

Using the Kendo ComboBox, I've created a picker for some data coming from a webservice. The HTML code looks like this:
Davide De Santis
  • 922
  • 1
  • 10
  • 25
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
4
votes
1 answer

What is missing to make my cascading DropDownList work

Very easy case displayed here: http://jsbin.com/ahoYoPi/3/edit I need to specify that the child's inner field to filter (eq) against the parent's value field is "category_id"... Of course, Kendo's documentation doesn't say anything about how to do…
Tuthmosis
  • 1,131
  • 3
  • 15
  • 27
3
votes
2 answers

Populating kendo MVC combo box based on another kendo combobox

I am trying to populate the value of one combo box based on selection of another combo box. I am using kendo mvc combo box in MVC 5 application. In my case , I am trying to populate the Sales Office combo box based on selection of SalesOrganisation…
Tom
  • 8,175
  • 41
  • 136
  • 267
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
3
votes
1 answer

How to add custom attribute to kendo combobox

I am working on web application using kendo UI and I need to add a custom attribute to combobox. How can I do this?
user2176191
  • 49
  • 1
  • 10
3
votes
0 answers

Kendo ComboBoxFor not working properly

I have a class for Student where there are fields like StudentId, StudentFirstName, StudentLastName, Email, Gender etc. I have taken a Kendo ComboBox for listing students with filter functionality. VIEW CODE: @(Html.Kendo().ComboBoxFor(m =>…
Dhwani
  • 7,484
  • 17
  • 78
  • 139
3
votes
2 answers

Kendo ComboBox - How to select option based on its text() rather than value()?

I am really struggling to select an option from my combo box based on the text rather than value. I have a combo box which has a datasource attached to it which are countries. These countries are stored in the database. I want the default country to…
Simmy Dhanda
  • 139
  • 1
  • 4
  • 13
3
votes
1 answer

Kendo UI Cascading Combobox - Check if initialised

I am using the Kendo UI Cascading combo boxes in an MVC 4 application. The source is too complex to post here, however it follows exactly the same structure as the MVC demo on the Kendo UI site…
ciantrius
  • 683
  • 1
  • 6
  • 21
1
2 3
12 13