I'm totally new to Telerik and the example that I want to build upon is defined in this style:
<kendo-grid name="grid" height="550">
<columns>
<column field="Facility_Id" title="Facility"/>
<column field="Name" title="Name"/>
when I look for hints on what is possible, I find only this style:
$(document).ready(function () {
var grid = $("#grid").kendoGrid({
columns: [
{ field: "FirstName", title: "First Name", width: "140px" },
{ field: "LastName", title: "Last Name", width: "140px" },
{ field: "Title" },
{ command: { text: "View Details", click: showDetails }, title: " ", width: "180px" }]
}).data("kendoGrid");
Which is the preferred one and where do I find examples for the first style please?
Thanks
I have been doing a static code analysis of my entire project with the KIUWAN tool
This tool has found some security issues in some Kendo JS files
I would like to know if they are false positives or if it can be justified in some way that there are no security problems
Problems found (the most important are the first 3):
Kendo version: 2020.2.513
Hi, we need to use the setOptions function when we resize the window, to set the new gantt height.
We also use the "resizable" property.
The problem is, after a "column resize", the inner "option" column width is not set to the object.
So, when we use setOptions, the columns size are back to original.
We found a workaround, where we edit the inner option column size property after a "colunnResize" event, but I think that it's a bug and it should be done by the component itself automatically.
https://dojo.telerik.com/@foxontherock/uCulUjiy/6
I also tried to keep the "listWidth" by binding the "resize" event of the inner splitbar, but I think it's not a kendo splitter, but a custom spliter made just for the gantt, and it doesn't work.
We’re using the Kendo Grid and need to make it ADA compliant . We're using a tool called JAWS for verifying the ADA compliance.
Below are some of the issues we noticed:
1) How can we set focus on the Edit popup screen from kendo grid?
2) Say once the focus is set on Edit popup form ;How can we navigate to the other controls on the popup screen ?
3) How can we exit out of the edit popup screen and set focus back to the main grid ?
Thanks,
Prasuna
Hi ,
We are working on the requirement in which we need to provide more options/bullets for ordered list or for unordered list like we have multiple options in MS word.
Also i find same think in richtext editor https://richtexteditor.com/ where we can have such options in the form of dropdown list, Is it possible with Kendo Editor as we have license for Kendo ?
Thanks,
AK
Hi devs and support.
I'm using the grid search panel in a grid toolbar template (https://www.telerik.com/forums/search-panel-and-toolbar-template)
If the user paste "1234 " (with a trailing space) into the search input box the row with id="1234" is not found.
Is there a clever way to do a .trim() before the entered/pasted value is used to search the data?
Best regards
Morten
Is there a way to turn off the tools menu in the editor through javascript. I want to remove the tools when the control is disabled and then make them show when it's enabled.
Hi, we need to hide the timeMarker.
So we use the setting, "currentTimeMarker: false".
It works on the initial rendering, but it gets back on multiple events, like resize.
Example: (will reappear after 1000 ms by calling kendo.resize)
https://dojo.telerik.com/@foxontherock/iSEquBeT