Hello,
We have faced some interesting behavior -
kendo.parseDate("17:01")
returns "Tue Mar 13 2018 17:01:00 GMT+0200 (FLE Standard Time)"
Which means that this method much more data that we passing into (Tue Mar 2018 - current date). Is this expected behavior?
Thanks.

I'd like to allow users to dynamically change the URL of the media player.
I have tried to destroy the widget and recreate it but I get an error.
$("#mediaplayer").data("kendoMediaPlayer").destroy();
"VM66743:62 Uncaught TypeError: Cannot set property 'ontimeupdate' of undefined"
How can I update the URL of the media player and refresh the player to play the new URL?

Hi,
I am trying to implement kendo autocomplete on google maps. Normally it works fine but when I make the map full screen then autocomplete dropdown list is not selectable anymore. I tried to change the z-index but didn't work. Any ideas?
Here is my sample fiddle.
Btw. when debugging this thing, I noticed that the getUSerName function gets call an stupid amounts times when rendering the grid. Is this normal? or am I doing something wrong? I'm a bit concern about the impact it could have on the performance. I mean, my test data source had 3 results, but the function was being called like 15 times.. odd.

$('#GroupeID' + GroupeId).find('.k-header').each(function () { $(this).css({ 'transform':'rotate(90deg)', '-moz-transform':'rotate(90deg)', '-o-transform':'rotate(90deg)', '-webkit-transform':'rotate(90deg)', '-ms-transform':'rotate(90deg)' });});$('#GroupeID' + GroupeId).find('.k-grid-header').css('height', '300px');
I noticed that the thembuilder appears to download the full CSS for the entire framework, which would be expected. Is there an existing option or a planned future option to download only the CSS needed? For example if I wanted to do a custom build of Kendo Ui for only the grid widget, would I be able to use the themebuilder to create a theme that contains only the CSS needed for grid (and any required base CSS stuff as well) ?
Just curious as it would be nice to be able to generate a smaller CSS file to match a custom build.
Thanks,
Alan
Hello,
the problem which I have encountered is as following. When using DropDownList when items are long text and there are a lot of them on Chrome browser(IE and Edge works fine). There can be seen a difference in time which is needed for drop down to appear. This gives UX.
It can be easily observed on demo with list with short items and long ones in Chrome vs Edge.
Any suggestions how to proceed with it?
Demo: http://dojo.telerik.com/ImOtevOq

Hi,
I have a requirement in my project to transpose a grid (i.e.
displaying tabular data in the flip axis so rows becomes columns and vice
versa).
For example: Below is the data we typically display in kendo grid. It has 3 columns : Name, Age and City
Name Age CityJohn 35 New YorkBrian 37 LondonTom 38 Phoenix
I want to display above data in below manner:
Name John Brian TomAge 35 37 38City New York London Phoenix