Hello,
Look example: https://docs.telerik.com/kendo-ui/controls/diagrams-and-maps/map/how-to/drag-and-drop-markers
This sample work in Chrome, but it don't work in IE11.
How can i use it in IE11?
Hello,
My project has a problem about combobox column.
Then i follow your example about how to implement dropdownlist in grid control (https://demos.telerik.com/kendo-ui/grid/editing-custom) but i want to use combobox.
Unlucky, i get some problems and combobox shows "undefined" value after it lost focus.
I want send you a movie about it.
What should i do?
Here my movie: https://www.loom.com/share/02eab3b36cf74eb3b10f98c0af721404
Thanks.

Use IE 11 to load the Grid Element show error. (capture screen attached)
And show that in 'kendo.all.js' line 3416
return support.matchMedia && window.matchMedia(media).matches;
IE not support this syntax.

Hi,
I want to set the start time and end time with remote data in Gantt CustomView,
so i call ajax then put them into "range" function, But the result show out "undefined",
my code bellow:
kendo.ui.GanttCustomView = kendo.ui.GanttView.extend({
name: "custom",
options: {
yearHeaderTemplate: kendo.template("#=kendo.toString(start, 'yyyy')#"),
quarterHeaderTemplate: kendo.template("# return ['Q1', 'Q2', 'Q3', 'Q4'][start.getMonth() / 3] #")
},
range: function(range) {
var startD = '';
var endD = '';
$.ajax({
type: "post",
url: "@Href("~/Home/GetMinAndMaxDate/")",
data: { 'EmpNo': @Model.EmpNo },
async: false,
success: function (data) {
startD = data.split(";")[0];
endD = data.split(";")[1];
},
error: function () { alert("edit Error") }
});
this.start = new Date(startD);
this.end = new Date(endD);
},
Shouldn't I do this? And how to set the date in remote way?
Thanks,
Liu

Hi Guys,
Just want to tell you about a problem I've found in case it affects anybody else.
After upgrading from Angular 7 to Angular 8 we kept getting the error Cannot read property 'data' of undefined for any kendo grids using a transport object.
The error was in kendo.data.js, what was happening was the kendo code is using $.extends to clone the transport object but only the properties were being cloned, so when kendo tries to execute the read function, it does not exist on the cloned transport object.
It turns out that as part of the Angular upgrade, typescript is updated to 3.5.3 and the CLI has been changed to build using ES2015 rather than es5. ES2015 uses native javascript classes and the version of jquery we are using (1,11,1) doesn't include the functions when extending those classes.
As a work around, we have changed the target back to es5 in the tsconfig.json.
Hopefully Kendo will switch to Object.assign instead of $.extends to clone their object as this plays nice with ES2015 / ES6

Remove kendo multiselect for kendo.all.min js file and create a custom kendo.multiselect.min.js
In my project i am using v2017 of kendo.all.min.js. but in case of kendo multiselect with server filttering , i am facing a issues while a adding custom data into the datasource. if i change a the version 2015 the multiselect are working bu other things are not working. so i want to remove mutiselect from kendo.all.min.js (v2017) and create a separate kendo.multiselect.min.js file with v2015

Hi Team,
I've been messing around with this MultiSelect widget. It has been a little buggy after the Q3 2015 release. I'm saying so because this is not the first time I'm seeing and reporting a problem with this widget.
So, If you please go to this link - http://dojo.telerik.com/OSoTU/4
It does not add it for the first time, but you can see the textbox has updated values. Now, if you hit the button again, it will show you the right items in the widget.
And this behavior can only been seen If serverFiltering is active.
Any suggestions?
Thanks,
George
