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…
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…
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…
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…
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},
…
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">
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.
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…
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…
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.…
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,…
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:
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?
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…