Hi!
I have the following problem with the function read.
The problem occurs when a new call dataSource.read.
The problem is not immediately visible, it is required to click on the button 1-10 times, then the double line or become very much and does crashes Firefox.
http://dojo.telerik.com/umEse/2
Hello,
I am trying to center a kendo window using MVVM
<div data-role="window" data-modal="true" data-position="{top: '50%', left: '50%'}" data-title="Setup" data-width="600" data-height="350" data-bind="events: { open: onWindowOpened }">
that.viewModel = kendo.observable({
onWindowOpened: function (e) {
console.log("test");
}
});
I can't get open event working. probably i can do it from there. Also with data-position set as attribute I cannot substract 50% - 300 and 50% - 175 to center the window. Please advice me.
Thanks.
Browser IE11.
I check ListView and Grid controls.
In Edge, IE9 and IE8 mods all work correct. In IE10 mode selection not work. Row in Grid and item in ListView can not be selected and Change events not fire.
But! In DatePicker and TimePicker I can select value (day and time).
Why this can happen?
The command setOptions broke custom column editor, here you can check simple exaple http://dojo.telerik.com/UsAGi
So I need to setup custom editor after grid state was restored. Please advise if there any way to do this.

legend: { visible: true, position: "top", margin: 5, padding: 2, font: "8px Arial"}legend: { visible: true, position: "top", margin: 5, padding: 2, labels: { font: "10px Verdana" }}How do I set the background colour of a row? I have the following code for iterating through the rows but am unsure how to set a css class on the row.
var items = grid.dataSource.data();
for (var i = 0; i < items.length; i++) {
if (items[i].dueDate != undefined && items[i].dueDate < today) {
// make row background colour red
}
}

Version 2015.1.521
When calling editCell or addRow on a grid I noticed that after the call current() is returning undefined. Shouldn't it return the currently focused cell?