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

KendoUI ComboBox Required Validation not triggered when value of primary datasource is null

Problem: I have a kendoui ComboBox that is setup for auto-complete with a Primary Data Source (the record being edited) and a Secondary DataSource (the data for the auto-complete). The Primary Data Source has a schema with the…
user2109254
  • 1,709
  • 2
  • 30
  • 49
2
votes
1 answer

Handling server filtering with Kendo ComboBox

I'm trying to handle filtering of Kendo UI ComboBox on server side. I have the following codes in the view $('#Solicitor').kendoComboBox({ placeholder: "@T("Enter the partial Name or Primary ID of the Entity.").Text", dataTextField: "text", …
Twisted Whisper
  • 1,166
  • 2
  • 15
  • 27
2
votes
1 answer

Kendo Grid Custom comboBox Filter

I has grid which will load data as filterable combo box, So I need to create custom filter for this column with filterable combo box also. I create combo box and assign it to the column filter UI. My problem is when the combobox read the data from…
Wael Joulani
  • 167
  • 2
  • 4
  • 14
2
votes
3 answers

Setting default value of a dropDownList

ive been using this to set a default text form input on a kendo grid which works fine. e.container.find("input[name=policy]").val(lender_policy).change(); however if i try and set a default value of a dropDownListlike below, it sets the value of…
user2012783
  • 183
  • 1
  • 7
  • 18
2
votes
1 answer

Kendo ComboBox value inconsistent with object sent to Update

I have an EditorTemplate with a ComboBox which is bound (via matching Name) to a property in my Model. The ComboBox is populated with some custom data objects via .Name("MyType" .DataTextField("Name") .DataValueField("DBValue") .DataSource( source…
Kelly Cline
  • 2,206
  • 2
  • 33
  • 57
2
votes
1 answer

Setting initial value in a Kendo UI Cascading Combobox with server filtering

I need to make a cascading combobox with server filtering but I'm having trouble setting the initial value. The dropdownlist on which the combobox depends looks like this: @(Html.Kendo().DropDownListFor(model => model.SelectedCompany) …
PhilDulac
  • 1,305
  • 20
  • 32
2
votes
2 answers

Trying to understand this code block

The following script renders required field background color of Kendo UI combobox control. Although this script works perfectly fine, I find it hard to understand it. From what I can tell, it starts off with attaching custom property or method so…
Seong Lee
  • 10,314
  • 25
  • 68
  • 106
2
votes
2 answers

Kendo Drop down list positioning issue on scroll of the page?

I am using kendo dropd own. I am facing an issue on scroll of the page when the drop down was opened. Here is the example. jsfiddle demo When kendo ui drop down opened try to scroll with the mouse wheel, the kendo dropdown list is detaching from it…
user1952461
  • 41
  • 1
  • 5
2
votes
1 answer

Kendo combobox select display text when user clicks the comboxbox to filter

I can't seem to find this anywhere. Is there a way to select the full display text of the combobox when the user clicks in the combobox to filer? By default, when the user clicks into the combobox, the the user has to manually select the full text…
Pritesh
  • 41
  • 2
  • 8
2
votes
4 answers

Setting tabindex for kendo numeric text box

How do I set tab index for numeric text box.. My code is .. $("#max_award_amount").kendoNumericTextBox({ min:0, max: 99999999.99, }).attr("tabindex","4"); But it is not working as expected.
Kiren S
  • 3,037
  • 7
  • 41
  • 69
1
vote
0 answers

Binding a Kendo ComboBox to two model properties (one when an existing item is selected, one when a value is typed in)

I don't know if this is something that is possible or not, but I'm having trouble finding the correct words to search for answers. Let's say I have a "Location" model with these two properties. City corresponds to a column in the table with a…
CarenRose
  • 1,266
  • 1
  • 12
  • 24
1
vote
1 answer

Angular kendo combo box cannot hide when no data

I'm working with angular and kendo, I use kendo combobox to display some value as here. I want to hide the popup when no data match, but I cannot do that. Please help me.
Traly
  • 67
  • 9
1
vote
2 answers

How to set KendoComboBox( jquery UI) value with ViewModel value?

View(model) is returned from a controller IActionResult method, but Kendo combo-box selected value is not get reflected like other UI elements. How can I set the selected value of the combo-box with the View model value?
DaminiVyas
  • 308
  • 3
  • 15
1
vote
1 answer

How to get selected dataItem from Kendo UI MultiColumnComboBox after setting its value?

I have a multicolumn combobox that I am programmatically setting its value, then trying to get its selected ID but to no avail, keeps coming back as undefined. I have tried triggering the change event when setting the value and then trying to get…
Chris
  • 2,953
  • 10
  • 48
  • 118
1
vote
0 answers

Kendo-combobox issue in mobile

I am using Kendo-combobox where i will be able to type and filter the dropdown data. That is fine in desktop. It looks same in ios mobile as well. but i want it to make as normal select dropdown in ios mobile where dropdown menu pops from the…
1 2
3
12 13