Questions tagged [kendo-multiselect]

A multiselect component of Kendo UI framework.

Multiselect is a Kendo UI () component.


References

Related tags

180 questions
2
votes
1 answer

kendo multiselect in grid not binding correct

im using a mvc kendo grid and in that grid i want to use a multiselect. Somehow when the grid have fetched the data is says undefined for the multiselect value but when i press the update button in the grid it finds the correct values for the…
Daniel Gustafsson
  • 1,725
  • 7
  • 37
  • 78
2
votes
1 answer

how to give a kendo ui autocomplete widget with multiple values, the css functionality of a kendo ui multiselect widget

I am wondering if there's an easy way to have the multiselect widget's css functionality shown in this demo http://demos.kendoui.com/web/multiselect/index.html applied to an autocomplete widget.
user1221271
  • 65
  • 4
  • 10
1
vote
0 answers

How to create multiselect filter for list in kendo for angular?

I have situation when I'm displaying on grid list of persons. NAME --- LASTNAME --- AGE --- HOBBIES Name, lastname and age are single value, but hobbies are list of hobbies, for example for one person I got "football, basketball, speedway, music"…
1
vote
1 answer

How to pass Additional parameter in Kendo Multi select

I want to load positions based on selected employee. I have tried to pass additional value "IDs" Parameter, but it didn't work. Index.Cshtml $("#employees").kendoMultiSelect({ placeholder: "Select employees...", …
Developer
  • 11
  • 3
1
vote
0 answers

Can't get Value of an Input element to use as parameter for dataSource Read Request in Kendo UI for ASP.Net MVC

I am using Kendo UI for ASP.Net MVC and Below is my MultiSelect for a List property of my model. In DataSource Read I am giving a js Function name "userIdFilter" @(Html.Kendo().MultiSelectFor(m => m.PositionIds) .Filter("Contains") …
1
vote
1 answer

How to avoid Kendo Multiselect from clearing the input when focus is lost?

I'm working with Kendo UI for JQuery, and I declared a multiselect to act as a TagBox following this example. I noticed that whenever the component loses its focus, whatever was typed is cleared. I wish to avoid this behavior, since forcing a user…
Uriel Arvizu
  • 1,876
  • 6
  • 37
  • 97
1
vote
0 answers

Kendo Multiselect filter does not show

I have a pretty basic MultiSelect, but the filter textbox (so you can type) does not even render. @(Html.Kendo().MultiSelectFor(x => x.ParentAction.CustomFields) .Placeholder("Search...") .BindTo(Model.ParentAction.CustomFields) …
Thomas927
  • 853
  • 1
  • 11
  • 19
1
vote
2 answers

Kendo MultiSelect make value to be selected and disable

Need help here. I create a simple demo here and what I want to achieve from dataBound if checked='yes' node is selected and disable(apply k-state-disable) from edit. I try to set (selected,true) & (disabled,true) but seem it not working. DEMO IN…
1
vote
2 answers

How to pass multiple selected values to controller?

I have converted the kendo dropdownlist into kendo multiselect. I wanted to pass multiple selected values to the controller. Dropdownlist contains: D-UDMS-TMA Data Mgmt System U-TDMS-SMA Mgmt System The below is my…
1
vote
3 answers

How to take the selected text in Kendo multiselect variable?

I have converted the kendo dropdownlist into kendo multiselect. Dropdownlist contains 2 items: D-UDMS-TMA Data Mgmt System U-TDMS-SMA Mgmt System $("#btnSendFlow").click(function () { debugger; var FlowData_array = []; …
1
vote
0 answers

Filterable mode "row" with data string array

I have a kendo grid with datasource which have data string array. I want use the option mode row and filter on fiel organizations but it doesn't work because it wait a string not a array. The error is : "TypeError: (intermediate value).toLowerCase…
lg0173
  • 208
  • 2
  • 8
  • 20
1
vote
1 answer

How to "Filter a Kendo Grid data on serverSide with multi checkbox filter that has some default selections made"

I am trying to create a multi checkbox filter on a column of the kendo grid with serversidefiltering set to true. In the multiselect-checkbox filter, I want to default the selection to some value. I am trying to achieve these 2 scenarios given…
Apeksha
  • 259
  • 1
  • 3
  • 15
1
vote
2 answers

Kendo Grid's column filterable property "ui" not working when property "multi:true" specified

I am trying to create a multi checkbox filter for a Kendo grid column. For this feature I am using "multi:true" property on the column's filterable. I also want to use the "ui" callback function which does not seem to work when I have the…
Apeksha
  • 259
  • 1
  • 3
  • 15
1
vote
1 answer

How to Pre-select value for KendoMultiselect with checkboxes, when the multiselect options are read from an API call

I am trying to set up pre-selected values for a multi-select checkbox filter for one of the columns in my Kendo Grid. I am not sure how to achieve this. I have tried to use the 'value' attribute. But it does not seem to work with my code. I have…
Apeksha
  • 259
  • 1
  • 3
  • 15
1
vote
0 answers

kendo-multi-select: filter-text not removed when autoClose = false

I use kendo-multi-select at angular project. I have set auto-select = false. When user filter by start typing, and then he select item, the filter-text not removed. The selected item is attached to the input and after that the typed-text appear. Any…
user5260143
  • 1,048
  • 2
  • 12
  • 36
1 2
3
11 12