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…
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",
…
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…
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:
…
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]
…
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.
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(),…
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:…
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…
Kendotooltip is not working on kendoMultiSelect?
multiSelectParticipant = $("#select_multi_participant").kendoMultiSelect({
autoBind: true,
dataTextField: "details",
dataValueField: "resource_id",
filter: "contains",
dataSource:…
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…
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)…
I am using KendoMultiselect control in my ASP.NET web-forms project. I wish to close its dynamic dropdown, when the mouse leaves the dropdown option area. I have tried many options such as below with the comment.
Here is the code snippet.