We have a header/detail accounting application with a data-entry form and an editable grid. When tabbing off of the form to the grid the first cell will not go into edit mode except with some workaround 'hack' code in the 'navigate' event (see below). The problem is the grid edit mode literally works differently when tabbing to the first cell of the grid from a form input field vs. clicking in the same cell. Clicking (rather than tabbing) into the first cell does put the cell into edit mode, but
clears the field contents. Here's the code
let grid = $("#" + target).kendoGrid({
dataSource: {
data: rows,
schema: {
model: {
fields: columnSetup.modelFields
}
}
},
edit: function (e) {
// This does not fire when tabbing to the grid. It will fire if a cell is clicked.
},
editable: {
mode: "incell",
createAt: 'bottom'
},
navigatable: true,
navigate: function (e) {
// Attempted Workaround (hack) - This does put the first cell in edit mode, but only when tabbing
// to the grid. However, clicking in the first cell does put the cell in edit mode, but clears the field value.
if (e.sender['_rowVirtualIndex'] == 0 && e.element[0]['cellIndex'] == 0 && typeof (e.sender['_editContainer']) != 'object') {
this.editCell(e.element[0])
}
},
resizable: true,
reorderable: true,
scrollable: { virtual: true },
selectable: "row",
columns: columnSetup.columns,
dataBound: keyboardEventHandler,
}).data('kendoGrid');

After spreadsheet initialization, the controls renders as a blank control (no rows, no columns), the tabs rendering is also impacted. If I click the add sheet (+) and go back to the first sheet, the rendering issue seems to resolve itself. There don't seem to be any errors during the initialization process
var configureBalanceSheetSpreadSheet = function (batchId) {
$.getJSON("../../../Data/FinancialsJson/Templates/BalanceSheetTemplate.json")
.done(function (json) {
$("#balanceSheetSpreadSheet").kendoSpreadsheet({
sheetsbar:false
});
var spreadsheet = $("#balanceSheetSpreadSheet").getKendoSpreadsheet();
spreadsheet.fromJSON(json);
})
.fail(function (jqxhr, textStatus, error) {
console.log("Request Failed: " + error);
});
}
Hi,
We've found that on some of our elements (such as DropDownList and AutoComplete) the background and font colours clash when focus is put on the element. The attached screenshots show that after picking an option, the box is left unreadable until the user moves focus away from it.
We've not been able to work out which CSS styles we should be overriding to alter the styling here. Does anyone have any hints?

Im having an issue where I am trying to create a calculated property on a child object in the observable view model where its value is dependant on a property on the parent and the calculated value is not updating when the parent gets updated.
Please help, Im quite confused
Here is the code and a fiddle of it
https://jsfiddle.net/80mo1ch7/
<script> var viewModel = null; $(document).ready(function () { viewModel = kendo.observable({ parentNumber: 1, child: { showLink: function () { return this.get('parent().parentNumber') == 2 } } }); kendo.bind($('#simpleTest'), viewModel); document.getElementById('changeValue').onclick = function () { if (viewModel.parentNumber == 1) viewModel.set('parentNumber', 2); else viewModel.set('parentNumber', 1); } });</script><section id="simpleTest"> <p data-bind="text: parentNumber"></p> <section data-template="simpleTestChildTemplate" data-bind="source: child" /></section><script id="simpleTestChildTemplate" type="text/x-kendo-template"> <section> <button id="changeValue">Change</button> <a data-template="headerTemplate" data-bind="visible: showLink">BlahBlah</a> </section></script>Is it possibile to disable only the "Add" or "+" on sheetsbar?

This occurs in the sample in the docs, regardless of the backend.
Follow this link to the documentation, and open in Dojo.
http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#events-edit
Repro steps:
Add a new row
Click edit on new row, then click cancel.
Row disappears from grid.
If you do the same on a previously existing row, it does NOT disappear.

We want to show a diagram in a modal window and need tooltips and tools(e.g. edit).
Minimal example based on demo: http://dojo.telerik.com/IGUke/3
Apparently the tooltip and tools are created with a lower z-index than the diagram.
Is this a bug or is there any workaround ot get tooltips and tools working?
