Hi,
I make a simple dialog with the k-i-tick Icon as OK replacement:
All work fine, only the tick icon is black. But in Nova theme the icons are white.
It is possible to show the tick icon also in white?
Peter

I am trying to implement multilevel lazy loading treeview. We are not sure of how many levels of nodes will be there in the treeview.
1. ) How can i implement multiple levels of nodes ? i have X number of items and it is not possible for me to provide children always.
2. ) while creating my treeview data model i have an attribute "RANK" in the model. How do i get value of RANK for expanded node so that i can pass it as input while calling service to load child node?
For URL i need to add RANK as parameter. When i used url: function (options) { }) i am only getting ID value in options but not the RANK.
Below is the code i implemented for two levels.
Please help. If possible please provide an example.
Thanks in advance.
<div id="trVwScanOrg" ></div>
$(document).ready(function () {
TreeviewDataBind();
});
function TreeviewDataBind() {
var SecondLevel= {
transport: {
read: {
url: function (options) {
return kendo.format(MVC URL + parameters in querystring);
},
type: "get",
dataType: "json"
}
},
schema: {
model: {
id: "ID",
hasChildren: "HasChildren",
children: NextLevelItems,
Name: "Name"
}
}
};
var FirstLevel= new kendo.data.HierarchicalDataSource({
transport: {
read: {
url: MVC URL + parameters in querystring
type: "get",
dataType: "json"
}
},
schema: {
model: {
hasChildren: "HasChildren",
id: "ID",
children: SecondLevel,
Name: "Name"
}
}
});
var trVwScanOrg = $("#trVwScanOrg").kendoTreeView({
dataSource: FirstLevel,
dataTextField: ["Name"]
});
}
Background:
I have a responsive website where a kendo menu and responsive panel are used to create a responsive menu. All links visible when on a large screen, but it collapses to an expandable menu when on smaller devices).
Examples:
http://demos.telerik.com/kendo-ui/responsive-panel/index
http://docs.telerik.com/kendo-ui/api/javascript/ui/responsivepanel
Issue:
This works beautify on every single device/browser with the exception of safari (testing on an ipad). When hitting the menu button, the menu will appear for a split second then close right away.
I found that it works fine in safari ONLY for pages WITHOUT images (yes, you read that right - i remove all <img> tags and it works fine). I searched ever CSS file, inspected the elements in chrome, and i don't see any unusual styles being applied to images. What could possibly be clashing in safari to cause this?? Any insight is appreciated!
This code was plucked from a previous developer online (i remember seeing it but can't find the link again):
01.<button id="mobilemenu" class="k-rpanel-toggle k-button btn-toggle">02. <span class="k-icon k-i-hbars"></span>03. </button>04. 05. <div id="responsive-panel">06. 07. <ul id="menu" class="">08. <li>Home</li>09. <li>Link2</li>10. <li>Link3</li>11. <li>Link4</li>12. <li>Link5</li>13. <li>Link6</li>14. </ul>15. </div>16. 17. <script>18. $(function(){19. $("#menu").kendoMenu({20. select: onMeunSelect21. });22. 23. 24. $("#responsive-panel").kendoResponsivePanel({25. breakpoint: 992,26. autoClose: false,27. orientation: "top"28. });29. });30. </script>Hi,
I have an image with a click event in my ListView template - on the actual list item.
But by the time the click event fires, any multiple selection is lost.
No amount of preventDefault seems to fix this.
Perhaps I can code something complex to remember the selected items, but is there any way this would work without it?
<script id="group-available-template" type="text/x-kendo-template">
<div class="group available k-widget">
<div class="name">#:name#</div>
<div class="group-action arrow-left" id="add-assigned" data-bind="click: actions.addGroup">
<img src="../images/admin/arrowleft-16.png" />
</div>
</div>
</script>
Hi,
As soon as I click in the Editor, it "refuses" to allow focus to leave it.
I'm stuck, in my UI form, not being able to click anything else on the form.
I can continue to type in the editor *but I cannot get out*.
The editor is on the pane of a kendo TabStrip, so one has to click the tab to reveal it before it gets stuck
This is just started to happen with kendo updates in the last year or so...
I realize you'll need a reproducing scenario but have you had anything similar to this, any ideas?

Hi.
I use kendo UI 2016 Q1 version: 2016.1.112
categoryAxis: {
field: "Subject",
majorGridLines: {
visible: false
},
labels: {
template: '#= <title>value</title> <b>value</b>#'
}
},
I use kendo template expression for raw html with value.
if label template raw html this will show value with bold and have tooltip when hover mouse to this.
Now after i update kendo Q1 2016 it not work. this work with old version 2015.
how to fix this ?.
Hi
I am trying to do a custom zoom with a dataSource. New data should be loaded with a higher resolution when zooming in and lower resolution when zooming out.
I am having trouble finding the new min and max values for the x-axis after the zoom. I would expect these to be somewhere in the zoom event object, but it seems hidden pretty well. Can anyone point me to them, like e.sender.? or e.axisRanges.valueOf(...?..)?
Thanks
Sune