Questions tagged [kendo-multiselect]

A multiselect component of Kendo UI framework.

Multiselect is a Kendo UI () component.


References

Related tags

180 questions
0
votes
0 answers

Group by and assign a value to list

I have an stored procedure which brings the data in this fashion. I need this to be grouped and assigned to a list. How to do this? +------------+---------+------------+------------+ | RuleID |RuleName | TemplateId…
Sachin jeev
  • 201
  • 4
  • 14
0
votes
1 answer

How to multiSelect with selection manager in power bi custom visual

I am using a kendo multi select in power bi custom visual but it appears that only the first selection is sticking. My code is below: $("#myMultiSelect").kendoMultiSelect({ dataTextField: "value", …
John Bowyer
  • 1,213
  • 1
  • 15
  • 26
0
votes
1 answer

Kendo UI Multiselect + ServerFiltering + ServerPaging with initial values

I am having some problems with the Kendo UI Multiselect with enabled ServerFiltering and Serverpaging. I'm using a pagesize of 50 elements. If I set an initial value on pageload which is within these first 50 elements everything works fine. If I'm…
jvecsei
  • 1,936
  • 2
  • 17
  • 24
0
votes
2 answers

How do you open a kendo drop down popup on page load?

I have several uses for kendo drop-downs in my application (DDL, ComboBox, etc.). I want them to open up on page load, but Kendo's documentation doesn't indicate that is possible. I am using the MVC server variables. This is my view coding: …
0
votes
1 answer

Populating a kendo multiselect with ajax data

I am using a kendo multiselect widget for users to select different values pulled from the database via an ajax call. The ajax call takes one parameter, searchValue, which will narrow down the returned data. Here is my controller: [HttpPost] …
Dr RobotNick
  • 126
  • 3
  • 13
0
votes
0 answers

Prevent Kendo MultiSelect from expanding

Kendo MultiSelect automatically expands after items exceeds its border instead I want to prevent this behavior adding dumpy item with tool-tip containing the other items textFields.
0
votes
1 answer

Kendo UI MultiSelect value & dataItems inconsistency

I am using Kendo UI 2016 Q1. In this version there I noticed a strange behavior when I want to clear items selected on MultiSelect. I clear them like this: var multi = $("#test").data("kendoMultiSelect"); multi.value([]); console.log(multi.value(),…
Rummy
  • 129
  • 2
  • 8
0
votes
0 answers

kendo multiselect set value with json duplicates

I'm using kendo multiselect and I'm trying to set some preselected options from json results like this (in the complete function of ajax): $("#edit").data("kendoMultiSelect").value(users.split(",")); users is a string (of values) like this:…
Marilou
  • 21
  • 7
0
votes
1 answer

How do I create Kendo ComboBox with multiple selected items using server filtering

I'm creating an email client, where I'd like the name/address lookup to work the same way it does in, say, Gmail. Kendo offer a ComboBox which will allow user to write free-form text, or to select an item from the filtered list. Kendo also offer a…
Katya S
  • 1,321
  • 3
  • 17
  • 31
0
votes
0 answers

How to use kendotooltip on kendoMultiSelect?

Kendotooltip is not working on kendoMultiSelect? multiSelectParticipant = $("#select_multi_participant").kendoMultiSelect({ autoBind: true, dataTextField: "details", dataValueField: "resource_id", filter: "contains", dataSource:…
0
votes
1 answer

Kendo UI (Multi Select Dropdown) - Change data values from External file

I am using Kendo UI (Multi Select Dropdown) and I want to change the option values of it from external script file. This is working as expected {Online DEMO} only if I am not initializing the Kendo feature in html page. So, I have already options in…
Reddy
  • 1,477
  • 29
  • 79
0
votes
1 answer

Custom filter function for Kendo Grid with multiselect column

I need to write a custom filter function. I have a kendo grid with multiple columns, i.e. name, age, city. The name column should be multiselect. Now, when filtering, the logic on the entire grid should be "and" but that specific column (name)…
0
votes
1 answer

KendoUI - Clear MultiSelectDropdown onClick of button

How can I clear all MultiSelectDropdown values if I click on button / link. HTML