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…
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.
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"…
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...",
…
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")
…
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…
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)
…
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…
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…
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 = [];
…
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…
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…
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…
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…
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…