1. Is it hard to understand the version numbers of our releases? If yes, what makes them hard to understand them?
2. Would semantic versioning (SemVer) of our releases make it easier to understand our version numbers and what's behind them?
3. If we go with SemVer, we might need to start with version 3000.0.0 as we currently use 2022.x.x. Please share your thoughts about this approach and ideas for what number versioning would work best for you.
Hi
On Kendo Grids we use the following template on a column to convert the string to a href link:
(e.g. workItemLink = <a href="/link/to/a/page.aspx?Key=ABC">ABC</a>
columns: [
{
field: "workItemLink",
template: "#=workItemLink#",
title: "Work Item Ref",
width: "110px"
}
]
This doesn't seem to work on kendoGantt columns:
columns: [
{
field: "workItemLink",
template: "#=workItemLink#",
title: "Link"
}]
Are templates not supported in gantt charts? Is there another way to add a link the column part of the gantt?
Thanks
Ben
Hello,
Cascading Comboboxes do not clear and reset values correctly when Virtualization is enabled.
I mimicked the bug though Codepen.
Find it here and follow instructions to reproduce the bug.
Thank you.
Hi...
In the Syncfusion Gantt Control, it's very easy to show/set the task dependencies (see screenshot of task properties bellow).
How to do the same in the jQuery Gantt?
Thank you.
Hi
my pager in the grid component does not show the active page:
analysing the HTML there is a class k-state-selected
but this class is nowhere defined in the current default theme
checking with the working demo from the kendo page the pager as rendered as buttons instead of li and there is a class k-selected which is also defined in the theme:
I'm working with all current versions:
Hello,
I have recently updated from R1 2022 to Kendo UI R1 2023, and now I am facing some backward compatibility issues regarding grid component.
New version does not support optional chaining in grid column field, for example:
columns:[{
field: "object?.property?.property"
}]
such approach throws an exception on sort operation (it works as expected in R2_2022).
Is there a fix foreseen in the near feature?
BR
I have a combo inside a column of the grid, i already managed to introduce a default value.
Now i need to block the combo actions, so the user cannot remove the default value.
My grid with combobox:
My code do default value inside combobox:
Hi, I need to rotate cell 90 degree in exported excel file as shown below. I'am using kendo grid jquery export excel feature. I don't find any documentation about it.