We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b2f96 commit 067519bCopy full SHA for 067519b
projects/igniteui-angular/src/lib/grids/selection/selection.service.ts
@@ -160,8 +160,11 @@ export class IgxGridCRUDService {
160
}
161
162
begin(cell): void {
163
- const newCell = this.createCell(cell);
+ // this is necessary beacuse when the cell enters edit mode the focus should be moved to the edit template
164
+ // if we constantly retrigger the focus over the edit template we broke the scrolling experience in the hierarchical grid
165
+ // This fix should be removed, when the issue #7219 is resolved
166
cell.focused = true;
167
+ const newCell = this.createCell(cell);
168
newCell.primaryKey = this.primaryKey;
169
const args = {
170
cellID: newCell.id,
0 commit comments