Is there a place where I can check which events are not fired when making API calls?? I could find a note where you guys state this is a known issue.
Thanks in advance

when i click on delete first time i get error on delete when i click delete again i get 2 delete requests. the one i made first time and the one i made the second time. if i click the third time so i get 3 errors and so on
link to stackoverflow question(with code):
https://stackoverflow.com/questions/48561985/kendo-ui-datasource-make-several-delete-calls-each-time
Hi!
I want my viewport to be centered to one of the shape inside the diagram. I already saw that post: https://www.telerik.com/forums/how-to-make-the-shape-to-the-viewport%27s-center , maybe i miss something, but when i do it like that my shape isn't at all at the center (see the attach picture).
i'm using these lines:
var newShapeBinded = diagram.addShape(new Shape(shapes[i]), false);diagram.bringIntoView(newShapeBinded);Which shapes[i] is a valid JSON Shape.
Thanks,
Samuel

Hi,
Is there a way to add a menu to the grid to the right of the columns and above the scroller ?
The idea is to do something like :
- show hide area (filter row, agregation, ...)
- Launch export (excel, pdf)
...
The only solution I have found is to complete the menu of each column, but it's not the optimal solution
Regards

Hello there. We faced with weird line breaks bug while exporting grid to excel. Here is the dojo: https://dojo.telerik.com/ozAYiDEb .
Steps to reproduce:
1. Run dojo.
2.Click on Export to Excel.
Result: created excel file won't have line breaks at all. The dojo was taken from https://docs.telerik.com/kendo-ui/knowledge-base/grid-excel-export-new-lines

Hi,
I would like to be able to check/uncheck the switch with the keyboard
but nothing bind to the switch. i tried :
scope.toggleSwitch.bind("keyup", toggleKeyUp);scope.toggleSwitch.bind("focus", toggleFocus);scope.toggleSwitch.bind("click", toggleclick);any idea wuld be appreciate thanks

Hi,
I have a table containing 28 dynamically generated KendoUI buttons that represent a 28 day cycle. Im trying to enable and disable them all at once, but only the first button is being affected. Please advise.
//Inialize ALL 'day selection' buttons$("#table-frequencyWindow-daySelection").find("button.dayButton").kendoButton({ enable: false});//Inialize Frequency Selecter as kendo Drop Down List$("#select-frequencyWindow-frequency").kendoDropDownList({ change: function(e) { var daySelectionTable = $("#table-frequencyWindow-daySelection"); console.log(daySelectionTable.find("button.dayButton").length) //Prints "28" if (this.value() == "") { daySelectionTable.find("button.dayButton").data("kendoButton").enable(false); } else { daySelectionTable.find("button.dayButton").data("kendoButton").enable(true); } }});