Bug report
Pivotgridv2 measure is not slicing the data by the second attribute when expanding
Reproduction of the problem
Open this Dojo example - https://dojo.telerik.com/zmhjamtb
Value sum is correct (sliced) for all rows:
where the second row is expanded and not correctly sliced:
Environment
jQuery: 3.4.1
Kendo UI version: 2025.1.227
Browser: [all]
Bug report
Spreadsheet cellContextMenu() throws an error
Regression with 2024.4.1112
Reproduction of the problem
Run the Dojo: https://dojo.telerik.com/SlDUjkTQ
Check console
`Uncaught TypeError: spreadsheet.cellContextMenu is not a function`
Environment
jQuery: 3.4.1
Kendo UI version: 2024.4.1112 or newer
Browser: [all]
The class rendered for a custom tool in the Grid toolbar is always lower-cased, regardless how the name is configured.
Regression introduced with 2023.1.117
The rendered class is lower-cased
The class name should be as defined in the name field
When you add a filter to a column on the spreadsheet component, only the down arrow icon part of the filter button is clickable, not the entire button.
The filter menu is not opened unless we click on the icon.
The filter menu should open when the button is clicked.
On Safari, the Scheduler throws an error.
An error is thrown on the browser console
No errors should be thrown
Currently, filter logic is not translated in the expression preview. A `messages` property needs to be added for adjusting the logic
When the DropDownList is configured with autoWidth:true, each opening of the component increases the width of the popup with 1px
The width of the popup increases with each opening
The width should remain the same
PivotGrid has the Include Fields option. When a child field is removed from the pop-up treeview, it is not possible to add it anew since the checkbox is not preserving its state.
Open the dojo:
https://dojo.telerik.com/@sspasova/oBAloXAp
And follow these steps:
Scenario 2:
1. Open the Demos - https://demos.telerik.com/kendo-ui/pivotgrid/remote-flat-data-binding
2. Click on on the 'Include Fields' option for the Countries. Uncheck some of the countries, for example 'Mexico' and 'UK'.
3. Click the OK button.
Current behavior: All countries are selected again and can not be unchecked.
Expected behavior: The filter should be persisted and previously unchecked countries should remain unchecked.
In a Grid with popup editing, the Save button is clickable multiple times until the popup closes, which results in multiple Update requests
Regression introduced with 2024.2.514
The Save button is not disabled after the first click, and multiple Update requests are sent
The Save button should be disabled to avoid multiple Update requests
Hello,
I noticed in some of my charts that when I call saveAsPDF, the series.name seems to be just a literal string of the series.name option, even when I use a template.
Please see the attached dojo to reproduce (I based this dojo off of the Chart API series.name as template dojo example).
https://dojo.telerik.com/ZgsUVIjM
I noticed that this behavior starts in 2024.4.1112. Prior versions evaluated the template for the PDF.
I do have a workaround for this, which is included in comments in my dojo. I just exportPDF and then use kendo.saveAs.
Additionally, I noticed that the bars in the chart are at 0 in the PDF. I'm not worrying about that at this time, I'm exclusively interested in the series.name template being evaluated on saveAsPDF.
Here are some screenshots of the dojo and resulting pdf for v2024.4.1112:
Here is a screenshot of the pdf when the same dojo is run on 2024.3.1015:
Please let me know if you'd rather I paste the dojo code directly into this ticket, or attach as a code file.
Thanks!
-Alexa
In a Grid with locked and hidden columns, it takes two arrow key hits to navigate to the next cell
You need to press the right arrow key twice in order to navigate to the next cell
Navigation to the next cell should only take one key press
When cell with border is cut in the Spreadsheet, the border is also removed from the next cells.
The cell A2 should have a right border, cell C2 should have a left border, etc...
The next cells borders are cut as well
Hi Team,
I would like to request adding a scrollbar option for the Kendo UI ContextMenu instead of the scroll buttons.
Thanks!
When resizing the splitbar fast in the Kendo UI Splitter, a ghost splitbar will appear.
Hi Team,
I would like to request for the Kendo UI TreeList to have a column.resizable property similar to the Kendo UI Grid.
Thank you!
If you have a collapsible Kendo UI Splitter with 2 Panes and horizontal orientation, and one of them has size, the other pane will not be collapsible.
First pane remains at a fixed width.
The Pane should completely collapse similar to the 2024.3.1015 version(Dojo).
The stack property in the Kendo Area Chart does not honor groups as separate stacking contexts.
Instead, everything gets stacked together if `stack: true` is applied.
For other chart types you can overcome this instead of just stack: true, set different stack groups, such as "A" and "B", so they do not stack together.
series: [
{
field: "value",
categoryField: "year",
name: "United States Group 1 - Series 1",
stack: "A", // Separate stack group
opacity: 0.5 // Transparency for visibility
},
{
field: "value1",
categoryField: "year",
name: "United States Group 1 - Series 2",
stack: "A" // Part of the same stack as the first one
},
{
field: "value2",
categoryField: "year",
name: "United States Group 2 - Series 1",
stack: "B" // A different stack group
},
{
field: "value3",
categoryField: "year",
name: "United States Group 2 - Series 2",
stack: "B" // Part of the second group stack
}
]