kendo-angular icon indicating copy to clipboard operation
kendo-angular copied to clipboard

Grid cellClick event emits incorrect column index when using rowSpan

Open yanmariomenev opened this issue 7 months ago • 1 comments

Description

The cellClick event returns the wrong column index when a cell spans multiple rows using rowSpan; the issue seems to appear in the column rendered after the row-spanned one. This behavior also seems to break the editing.

Steps To Reproduce

Clicking the first two cells in the "UnitPrice" column shows that the cellClick event returns column index 2 for the first cell (correct) and column index 1 for the second (incorrect), due to the applied rowSpan.

https://stackblitz.com/edit/angular-obj4gecf-p19m5hk4?file=src%2Fapp%2Fapp.component.ts

Screenshots or video

Correct: Image Incorrect: Image

yanmariomenev avatar May 05 '25 06:05 yanmariomenev

The editing is also broken: https://stackblitz.com/edit/angular-obj4gecf-mdcsr1rc?file=src%2Fapp%2Fapp.component.ts

When you click on the second cell in the "UnitPrice" column, the editor is not displayed.

destus90 avatar May 15 '25 10:05 destus90