Hi Guys,
Have just tripped over an issue whereby Firefox is not rendering row/cell borders correctly.
To illustrate the problem run the following dojo in Firefox
https://dojo.telerik.com/EyIZuzog
On opening the popup you should see that alternate rows are missing a bottom border and the first column is missing the right border (see Firefox.png).
Under Chrome & Edge these borders are being rendered correctly (See Chrome.png).
Is this a known issue with Firefox and if so are there any methods/workarounds to overcome the problem.
Regards
Alan
Firefox: v69.0.1
Chrome: v77.0.3865.90

Can I attach a row-template to a detail-template?
<script id="templateSubGrid" type="text/x-kendo-template"> <h4>ciao ciao </h4> <div id="Subgrid" data-role="grid" data-row-template="rowTemplate" data-bind="source: Grid.source" data-columns="[ { 'field': 'documenti','title':' documentiName'}, { 'field': 'documenti','title':'documentiSurname'}, { 'field': 'documenti','title':'documentiAge'}, { 'field': 'documenti','title':'documentiIsEmpty'} ]"> </div> </script> <script id="rowTemplate" type="text/x-kendo-template"> #for(var i = 0; i < data.length; i++){ # <tr> <td> <span>ciao</span> </td> <td> <span>ciao</span> </td> <td> <span>ciao</span> </td> <td> <span>ciao</span> </td> </tr> #}# </script>Hi team,
Seems the calendar rendering is a bit broken with Chrome when setting font-size to odd number like 11px,13px. Since 2019R1.
Last line is a bit cut at the bottom (see screenshot).
https://dojo.telerik.com/aLuvEtIp
Best regards.
Laurent
Is there a printing feature to print the content inside the spreadsheet or do I need to use a print stylesheet?
Thanks!

Timeline is a great piece of work, but...
for my purposes i need to show not just date, but whole datetime including hour and minute, if possible seconds also.
Is there any option, overload or a way how to show full datetime in timeline?
Option for customisable datetime format is in need also.


Hello,
How can I expand the conversational UI to 100% width of the window ?
Thanks,
Stephane.

Hello
I'm collecting user actions on day level and would like to display those in a StockChart (column mode). This works all fine in StockChart but I struggle with these questions:
I was trying to find these options in the API documentation of StockChart but couldn't find these options. Maybe possible in combination(?).
Regards
<div> <div id="window"> <div style="height: 100%;"> <div style="overflow: auto; height: calc(100% - 70px); padding: 10px"> Content </div> <div style="width: 100%; height: 60px; background-color: #e3e3e3; border-top: solid #C5C5C5 1px"> <div style="float: right; margin: 10px"> <button id="okayButton" style="background-color: green">Okay</button> <button id="cancelButton" style="background-color: red">Cancel</button> </div> </div> </div> </div> <script> $(document).ready(function() { var window = $("#window"); $("#okayButton").kendoButton({ click: function(e) { window.data("kendoWindow").close(); } }); $("#cancelButton").kendoButton(); window.kendoWindow({ title: "Title", actions: [], modal: true, width: "90%", height: "90%" }); window.data("kendoWindow").center(); }); </script> <style scoped> #window { padding: 0px; overflow: hidden; } </style></div>