Hi --
I've been trying to get a "switch" of any kind to work with the regular MVVM framework -- it's a full desktop web application (not the mobile flavor).
I have tried including the mobile css, creating a new kendo.mobile.application, but nothing seems to work.
Do you have any examples of the mobile switch being used in a non-mobile application and using the MVVM framework? I'd love to see the code in a JsFiddle or something.
If you need it, I can try to create a non-working fiddle with what I'm after -- but it's really just a multi-field form, where one/more of the fields is a switch -- and uses the MVVM framework and NOT a mobile application.
Any assistance is appreciated -
Erik
Hello,
I am looking at doing remote validation using custom rules and I found http://www.telerik.com/blogs/extending-the-kendo-ui-validator-with-custom-rules approach which is exactly what I am looking for, however I would like to show a message using different styling/template when a field is in "checking.." state vs when there is an actual error,
Is there any way to specify an error template only for single field or conditionally change the error template based on for what field it is showing the error message, also I am using AngularJS version
Thanks
Ketul
I'm trying to write some javascript that will disable/enable all controls, regardless of type, in a specified div.
How can I do this? I understand that I might have to write a little code for each time of control, but I need to know where to start.

If I remove the url property on the data item, behavior is normal.
I've got a jsFiddle that demonstrates the problem here. The last node, 'Carpets' has a url property and can't be dropped and won't fire the drag event.

Hi all.
I'm using Kendo UI Grid to present SharePoint list data inside a TabStrip in a standard page in Office 365 (so SharePoint online) and everything works nicely except Export to Excel does absolutely nothing. I've tried using the toolbar "Excel" feature and it does nothing and if I add a separate button as the below:
$("#btnExcelExportAll").kendoButton({ click: function () { $("#allpropgrid").getKendoGrid().saveAsExcel(); }});
the page refreshes on click but nothing else happens. I've tried this in Firefox, Chrome and IE11 all on Windows 10 and no joy. Anyone got any suggestions? Am I missing some kind of pre-requisite?
Thanks in advance for any assistance.
My requirement is to show some specific events on top always however time does not matter for this event.
Like
Event1 - 02/02/2017 08:00
Event2 - 02/02/2017 10:00
Event3 - 02/02/2017 13:00
I want to show Event 3 on top always and it will be all day event.
Please help me on the same.

Hello. I have been having problems on the last couple of days regarding markers on maps. For my project we need that each time the user puts the mouse arrow over a marker a POST request is sent to the server. When the answer returns from the server we want:
- A tooltip to appear with part of the information received from the server response.
- The rest of the information from the response should appear in a table outside the map element.
You can see a working example (that uses a Google map element instead of a Kendo map) in:
http://89.18.174.74/maptest/
Even though Kendo map markers support tooltips, using them does not allow me to reproduce the intended behaviour due to several issues:
- No matter which way you use to specify the content (calling a local function, specifying a URL to get the content from, etc), the action to get the content is only executed once per marker. Even if the user is going back and forth between a clear area of the map and the same marker all the time, I need a POST request to be sent each time to the server since the answer might change.
- It is not possible for me to make the external table with data appear while the mouse is over one of the markers.
All of these could be very easily solved if I had access to events of mouseEnter/mouseLeave for map markers (like we have for shapes) that allowed me to show the tooltip and perform all the actions I wanted manually but, as far as I have dug, these are not available at the moment.
Any help would be greatly appreciated.
I've been looking at the licensed source distribution (2017.1.118, retrieved with bower), and had a couple questions/comments.
I have grid working with a detail row. The following code does not fade in the row:
function detailInit(e) {
var detailRow = e.detailRow;
debugger;
detailRow.find(".grid").kendoGrid({
animation: {
open: { effects: "fadeIn" }
}
});
}
