Questions tagged [kendo-multiselect]

A multiselect component of Kendo UI framework.

Multiselect is a Kendo UI () component.


References

Related tags

180 questions
12
votes
3 answers

Clear selected value(s) for Kendo multi select

I have Kendo multiSelect control which is working perfectly fine. However I am facing issue to reset its selected value. The following is what I have tried so far : $("#Department option:selected").removeAttr("selected"); And var…
Nitish
  • 13,845
  • 28
  • 135
  • 263
7
votes
1 answer

Using Kendo MultiSelect with Kendo UI Grid in ASP.NET MVC

This is related to another question I asked about recently. I'm trying to bind user role information to a grid, and I'm assigning roles to a user. Each user can be in multiple roles within the database, and these should be edited using a Kendo UI…
loxdog
  • 1,007
  • 3
  • 12
  • 30
6
votes
2 answers

Kendo multiselect control - Remove selected items from dropdown

I have kendo multi-select control on my asp.net mvc view. Whenever user select values from the control, it is visible on two places 1. On the textbox area and 2. highlighted item on the dropdown list. I want to remove the selected items from the…
user3608840
  • 97
  • 2
  • 9
5
votes
1 answer

Kendo Multi-Select with Checkboxes

I have a problem in implementing the code to the latest kendo version (2016) Working with 2014 - http://plnkr.co/edit/OVPTCV?p=preview Issues with 2016 - http://plnkr.co/edit/jmQrngM1oTRoeqhiQIhu?p=preview //MultiSelect - A user extension of KendoUI…
Ashok
  • 51
  • 1
  • 6
5
votes
1 answer

Kendo Multiselect Search Full Text Search

I am using Kendo Multiselect: http://dojo.telerik.com/EWiyo In my demo I have three options in the select box, those are: var data = [ {Name: "Swiss Stock Exchange SIX", Id: 220}, {Name: "Stock Exchange Oslo OBX", Id: 315}, …
DavidDunham
  • 1,245
  • 1
  • 22
  • 44
4
votes
2 answers

Selecting all options in kendo multiselect

I have in my application a Kendo Multiselect component where I select my available options. my View is like this: div class="editor-field col-width45">
@(Html.Kendo().MultiSelectFor(model => model.FeaturesValues) …
Mik3i4a5
  • 169
  • 2
  • 12
4
votes
2 answers

How to limit Kendo multiselect to 2 items selection

I want to limit kendo multiselect to 2 items selection. I see maxSelectedItems option can help me but not sure where to add this in the tag below. Any help would be appreciated.
3
votes
1 answer

How to prevent Kendo MultiSelect from losing values after editing in a grid template?

I have a grid that displays a comma-separated list of values, and it has an array that gets used in a template editor for the grid. (On the server, I transform the comma-separated list to an array for the Kendo multiselect AngularJS directive). I…
jaycer
  • 2,941
  • 2
  • 26
  • 36
3
votes
0 answers

Kendo multiselect cross icon issue

I am using Kendo multiselect. I am facing issue while removing selected items using cross icon which are coming in kendo multi select at right hand side as shown in image below, as per above image it is showing 8 item selected in drop down so to…
Prajapati Vikas
  • 294
  • 1
  • 10
3
votes
1 answer

hiding the Inactive Items form the Suggestions in kendo Multiselect

I have a multiselect in our application. I have a requirement where we should not show the Inactive users in the multi-select dropdown suggestions list. We have the flag in the model. So need to know we can filter the dropdown using that flag.…
Nalluri
  • 101
  • 1
  • 16
3
votes
1 answer

Kendo MultiSelect: Search on multiple fields

I'm working with kendo Multiselect and I would like to find a way to search in multiple fields of my data source. Here is my actual code. but it works only for one field: ` $scope.dataList = new kendo.data.DataSource({ data:[{id: "1",name: "Doe,…
Sysiphus
  • 33
  • 1
  • 3
3
votes
1 answer

Kendo multiselect

All the example and uses of Kendo UI Multiselect I've seen so far use 'id' instead of 'class' name in the html I tried using class name but it doesn't seem to work. Am I doing something wrong or Kendo doesn't support this? HTML:
roro
  • 193
  • 3
  • 16
3
votes
1 answer

Kendo Multiselect To have arrow icon and behavior to close on click

I am trying to add more functionality to my Kendo Multiselect, in order to behave like a normal dropdown list. I want it to have an arrow or a triangle icon, and to toggle and close on click on that icon. How can I achieve this?
error505
  • 1,126
  • 1
  • 17
  • 29
3
votes
1 answer

Model binding fails with Kendo MultiSelect

In the model I have long? field that I like to use Kendo MultiSelect for it. The main reason for this choice is server-side filtering. It doesn't reflect current Model's value, nor it sends any value to the server. By inspected traffic, I'm sure…
Akbari
  • 2,369
  • 7
  • 45
  • 85
1
2 3
11 12