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
1
vote
1 answer

Enable/disable kendo ui control dynamically

I want to enable/disable a kendo combobox based on the user's selection from a checkbox, which I am storing in a variable. I already tried setting the variable to the enable property, but this is useful only when the control is being built-in. Does…
Hobaxo
  • 21
  • 1
  • 8
1
vote
0 answers

How to bind Kendo.Combobox to its datasource on "Edit" event?

I need to populate Kendo.Combobox on its container's Edit event: I have a Grid that defines EditTemplate for a Kendo.Combobox: co.Bound(c => c.PropertyName).Title("Property Name").EditorTemplateName("_PropertyNameEditor"); The combobox is defined…
gene
  • 2,098
  • 7
  • 40
  • 98
1
vote
0 answers

Kendo Virtual ComboBox: selected dataItem is null and is not diplayed in bar, but it is exists in the datasource

After reading the documentation, I still have problems trying to implement a simple virtual combo box with only front end values. the combo box displays all my values correctly, and the virtualization works, but when I select an item from the drop…
1
vote
2 answers

required validation does not work with kendo-combobox in angular

I am using Kendo combobox with angular 5 , I am wondering if there is a way to apply some validations on this control, I have tried to use required attribute but it did not work, since kendo-combobox does not have property such as .valid to check if…
Mtaraby
  • 167
  • 1
  • 13
1
vote
1 answer

Custom drop-down as an item in a kendo tree

I am trying to create an item that is a button "show more" and when you press on it you can show a kind of context menu / drop down that all of the items in that drop down are with checkboxes and there is a search component in it too, so you can…
1
vote
1 answer

Selecting first item, if initial value does not exist

Here we have my combobox: @(Html.Kendo().ComboBox() .Name("depots") .DataTextField("Text") .DataValueField("Value") .Height(500) .Filter(FilterType.Contains) .Events(ev => { ev.Change("onDepotsChangeEvent"); …
1
vote
1 answer

Kendo combo box when open in full screen mode becomes not selectable

I am using kendo combo box. Whenever I make a particular div full screen, dropdown list of combobox present in it appears but it is unselectable. Code for kendo Combo box:
1
vote
0 answers

Event not fire from directive in angular js

I want to customize the data in kendo combo box with angular js directive. The code has given following: HTML Page:-
user2496448
  • 115
  • 1
  • 15
1
vote
2 answers

How to set Default value for kendo-combobox in angular 2

I am using Kendo Combobox to bind certain values in UI.Is it possible to set the first value of the Array as the default value ?.
1
vote
0 answers

How to get dynamically created kendo combobox value

I have one form for user informations and i'm creating some elements dynamically with kendo controllers (combobox,datepicket, etc.) I can create them successfuly but when i can get the value of selected item combobox or value of selected date from…
saulyasar
  • 797
  • 1
  • 17
  • 45
1
vote
0 answers

kendo combobox with custom filter on custom template

Is anybody having solution on this issue please try to help me I have a kendo combo box with custom template having UserID and EmployeeFullName colums, I would like to search on both columns so autocomplete will search for UserID as well as name. I…
1
vote
1 answer

Kendo UI DataSource is breaking on ajax call "this.substr is not a function"

I'm getting the error: Uncaught TypeError: this.substr is not a function String.remove @ vendor?v=aDfyqYhlmP6LIh14D-zVAUS28dc7bUxpraoGG0oruGc1:formatted:25867 e @ …
christo8989
  • 6,442
  • 5
  • 37
  • 43
1
vote
1 answer

Kendo Combobox Change event fires twice

I have Kendo Combobox in that on Change event I am calling a controllers action using Jquery Ajax.For the first time on Select of any item from Combobox the Action is called and I get the required data. But on ComboxBox focus Out(When i click on any…
SantyEssac
  • 789
  • 2
  • 19
  • 47
1
vote
1 answer

Kendoui ComboBox prefetch & preselect item with server filtering

I need to see an example of a kendoui Combobox (either MVC or client side code) preselecting an item (not only value) from datasource.The datasource has server filtering enabled.The issue i am facing is that when i bind my mvc combobox to a model…
1
vote
1 answer

Kendo combo box retrive selected item with virtual

I have a kendo combo box with virtual enabled and I would like to retrive selected item beacause I need more information after. I got undefined when I select an item after some virtual loading. This is my code $scope.select_item_options = { …
Davide
  • 475
  • 4
  • 19