I checked the documentation for the API and am utilizing the open method
However when opening the calendar popup this way the keyboard navigation no longer works. The only way to select a date seems to be via mouse click.
The issue is re-creatable on the demo example below
https://docs.telerik.com/kendo-ui/api/javascript/ui/datepicker/methods/open
I have found I can programatically set a kind of focus using the code
setTimeout(function () {
var ev = $.Event("keydown");
ev.keyCode = 39;
$("#FromDate").trigger(ev);
}, 100);
But after this the keyboard navigation is still not active.
Is there a way to make this work?
I have added some fields with caption names like this:
location: { caption: "Butik" }
but the problem is that its not used for grouping
it seems like a bug to me, is there way around it?
https://stackoverflow.com/questions/31749074/kendo-pivotgrid-translation-bug
While re-ordering columns in Chrome 100% zoom. Telerik v 2020.2.512.0 Javascript error: Cannot read property '_owner' of null at Telerik.Web.UI.GridColumn._onMouseUpHandler
is failing on line 45152 if (d != null && this._canDragDrop && !j._owner._isResize) Telerik.Web.UI.WebResource
Any ideas? Of where to look for the cause.
Hi team,
The edit zone of the view html dialog does not fit the width of that dialog and cannot be resized.
Best regards.
Laurent.

Hello,
Is it possible to add a textbox dinamically, by clicking a button?
I have the following code, and I need to add a textbox, just like the one I already have when click the "Add Button"
01.<!DOCTYPE html>02.<html>03.<head>04. <meta charset="utf-8"/>05. <title>Kendo UI Snippet</title>06. 07. <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.3.1021/styles/kendo.default-v2.min.css"/>08. 09. <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>10. <script src="https://kendo.cdn.telerik.com/2020.3.1021/js/angular.min.js"></script>11. <script src="https://kendo.cdn.telerik.com/2020.3.1021/js/kendo.all.min.js"></script>12.</head>13.<body>14. 15. <div>16. <input id="textbox" style="width: 100%;" /> 17. <input type="button" id="add" value="Add TextBox" class="k-button"/>18. </div>19. <script> 20. $(document).ready(function () {21. $("#textbox").kendoTextBox({22. placeholder: "email@email.com.br",23. label: {24. content: "Email",25. floating: true26. }27. });28. })29. </script>30.</body>31.</html>Hi
Do have facility for print(Export to PDF) Gantt chart in to PDF with multiple pages.
One of our client want this feature.
Regards
mamachan

How to truncate chart title if text is too long also once text is truncate show full text on mouse over or show in tooltips.
https://dojo.telerik.com/IRaJuJiH
Hello,
after upgrading my Gantt chart to release 2020 R3 SP1 I noticed a significant performance drop in the chart to the point of it not being snappy enough to give to end users. I have made a simple repro at https://dojo.telerik.com/OjOCEjIm/4 (I hope this links to my custom edit, if not the code is down below to copy paste into a Dojo window). It is a simple Gantt chart where I add 50 summary tasks and 50 child tasks for those.
When running the chart in the dojo under 2020 R2 SP1 the chart loads fast and clicking open a summary task has an almost imperceptible delay. But when switching to 2020 R3 or R3 SP1 releases from the dropdown in the top left, the same chart takes multiple seconds to load and opening of a summary task takes about 1-2 seconds.
I'm in a situation where the data to be displayed in the Gantt sometimes is in the order of 35-50*35-50 tasks. Are there any performance hints I might employ to make the R3 release usable as I would like to use for example the columnMenu option that I believe is only available in R3? Also any and all performance hints are welcome.
If the link up doesn't link to the custom Dojo, here is the code to copypaste:
<!DOCTYPE html><html><head> <meta charset="utf-8"/> <title>Kendo UI Snippet</title> <script src="https://code.jquery.com/jquery-1.12.3.min.js"></script> <script src="https://kendo.cdn.telerik.com/2020.3.1021/js/kendo.all.min.js"></script><link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.3.1021/styles/kendo.common.min.css"><link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.3.1021/styles/kendo.rtl.min.css"><link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.3.1021/styles/kendo.default.min.css"><link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.3.1021/styles/kendo.mobile.all.min.css"><script src="https://kendo.cdn.telerik.com/2020.3.1021/js/angular.min.js"></script><script src="https://kendo.cdn.telerik.com/2020.3.1021/js/jszip.min.js"></script></head><body> <div id="gantt"></div> <script type="text/javascript"> var gantt; $(function StartingPoint() { var ganttDatasource; this.ganttDatasource = new kendo.data.GanttDataSource(); gantt = new kendo.ui.Gantt($("#gantt"), $.extend({ columns: [ { field: "id", title: "ID", sortable: true, editable: false, width: 70 }, { field: "title", title: "Title", sortable: true, editable: true, width: 100 }, { field: "start", title: "Start", sortable: true, editable: true, format: "{0:MM/dd/yyyy HH:mm}", width: 100 }, { field: "end", title: "End", sortable: true, editable: true, format: "{0:MM/dd/yyyy HH:mm}", width: 100 } ], views: [ "year" ], listWidth: 300, height:800, dataSource: this.ganttDatasource }, {}));let tasks=[]; // random tasks for (p=1;p<50;p++) { tasks.push({id:"p"+p,parentId:null, title:"task", start:new Date(2020, p+1, 1),end:new Date(2020, p+2, 1), summary:true}); for (var t=0;t<50;t++) { tasks.push({id:"p"+p+"t"+t,parentId:"p"+p, title:"task", start:new Date(2020, t+1, 1),end:new Date(2020, t+2, 1)}); } } this.ganttDatasource.data(tasks); gantt.refresh(); }); </script></body></html>