Using even the published demo code at demos.telerik.com, I cannot shift-tab out of a toolbar control. This can be reproduced at http://demos.telerik.com/kendo-ui/toolbar/index: get the focus inside the toolbar and press tab to go forward through the buttons, eventually exiting the toolbar and on to other items. Again, put the focus in the toolbar and use shift-tab to move backwards through the elements. The focus reaches the first button and stops - it won't shift-tab out.
In my product's code, I experience almost the same, except the shift-tabbing seems to stop at the second button in the toolbar, not the first as seen in the demo.

Hi,
I am looking for an example on the syntax of a kendo mvvm dependant(computed) observable when used in type script.
Have not been able to find this anywhere.
Best regards
Ole

This started sometime late 2015 from what I can tell on the dojo page. It doesn't make sense and looks strange.
http://dojo.telerik.com/udIHI
I have a html/javascript chart which I populate via an ajax call. On dataBound, i resize the chart xAxis max and draw plotbands based on the values bound to the grid. Unfortunately, the setOptions call seems to then fire the dataBound event again... and around and around it goes in an endless loop. I got around this by setting a flag so that it only processes the first time. However, the issue I now face is that when I pull new data into the chart later (say because the user expanded the data ranges), i cant reset that flag and let it fire the code in the dataBound event. So, when the user expands the date ranges there is a good chance that my poltbands and axiscrossing settings will be wrong. Any advice? See below for code...
$.ajax({
type: "POST",
data: JSON.stringify({
startDate: $('#txtDateRangeFilter').data('daterangepicker').startDate,
endDate: $('#txtDateRangeFilter').data('daterangepicker').endDate
}),
url: "/User/EChart",
contentType: "application/json",
dataType: 'json'
})
.done(function (data) {
var plotbandloaded = false;
$('#currentDuration').text(Math.round(data.userGoalDetails.DurationHours * 100) / 100 + " hrs");
$('#goalDuration').text(Math.round(data.userGoalDetails.Goal * 100) / 100 + " hrs");
$("#chartE").kendoChart(
{
dataSource: {
data: data.userActivity
},
sort: {
field: "CreateDateTime",
dir: "asc"
},
title: {
text: ""
},
legend: {
position: "bottom"
},
chartArea: {
background: "",
width: 300,
height: 190
},
seriesDefaults: {
type: "line",
style: "smooth"
},
series: [
{
field: "Minutes",
name: "Minutes",
axis: "Minutes",
color: "#4D4D4D",
type: "column"
}, {
name: "Count",
field: "Count",
axis: "Count",
color: "#00B5A3",
type: "line"
}
],
valueAxes: [{
name: "Minutes",
color: "#4D4D4D"
}, {
name: "Count",
color: "#00B5A3"
}],
categoryAxis: {
field: "Day",
majorGridLines: {
visible: false
},
axisCrossingValues: [0, 50],
labels: {
rotation: "auto"
}
},
tooltip: {
visible: true,
format: "{0}%",
template: "#= series.name #: #= value #"
},
dataBound: function (e) {
setTimeout(function () {
if (plotbandloaded == false) {
var goal = Math.round((data.userGoalDetails.Goal * 60) * 100) / 100;
var goalTo = goal + (goal * .025);
var setMax = goal + (goalTo * .15);
var chart = $('#chartE').data("kendoChart");
var axisCrossing = chart.options.series[1].data.length + 1;
var options = {
valueAxes: [{
name: "Minutes",
color: "#4D4D4D",
max: setMax,
plotBands: [{
from: goal,
to: goalTo,
color: "#c00",
opacity: 0.3
}]
}, {
name: "Count",
color: "#00B5A3"
}],
categoryAxis: { axisCrossingValues: [0, axisCrossing] }
};
plotbandloaded = true;
chart.setOptions(options);
};
}, 100)
}
});
});

Hi,
I have been using the column menu to filter/choose columns to display in my grid and have been greatly pleased with the results. However, I would like to add a second custom menu item to the column menu that has the functionality of the column menu, but the choices are determined differently...
so say my columns are human names, Aaron, Andrew, Dave, Dorothy, Evan, Eric. Currently in the "columns" section of the menu, I can select which of those 6 I would like to display. Is it possible to add a second menu item that will contain choices 'A', 'D', and 'E' as checkboxes and will display those columns starting with the respective letter?
Hopefully that was clear enough. Thanks for the help!
I am using the kendo UI with the following version Kendo UI v2016.2.714.
I have a kendo grid with add, update and delete buttons, these functionalities are working fine in all the latest browsers except IE11.
Do i need include anything to make it work for these button events or any other ways to get this done.

Hi,
Is anybody seeing the "blank context menu issue" in the spreadsheet? The menu contains 4 items (Cut, Copy, Paste and Merge) but they are not visible unless you hover over them
And the Cut, Copy and Paste commands don't work anyway, they cause a "do not use this function" message. See http://screencast.com/t/lsHfeO8FT
This is happening with the Q3 2016 release in Chrome, Edge and IE 11.
Mike Wiese

Clicking on the legend item hides/shows series on a line graph.
Is it possible to bind to this event and execute my code? There are an example of hover over events, but I can't find any other example.
Thanks!
Hi folks,
You might experience an issue with missing or malformed Unlink and PDF toolbar tools with version 2016.3.914 of Kendo UI Editor.
The Problem
The issue could be observed on the following demos:
and is also logged with Medium severity here.
Here is how the PDF icon looks when the problem happens: ![]()
The Workround
A possible partial workaround is to add the following to the page styles:
.k-i-unlink { background-position: -288px -72px; }.k-i-pdf { background-position: -288px -240px !important; }