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 327fad2 commit d9777ccCopy full SHA for d9777cc
projects/igniteui-angular/src/lib/grids/grid-mrl-navigation.service.ts
@@ -211,6 +211,9 @@ export class IgxGridMRLNavigationService extends IgxGridNavigationService {
211
212
headerNavigation(event: KeyboardEvent) {
213
const key = event.key.toLowerCase();
214
+ if (!this.activeNode.layout) {
215
+ this.activeNode.layout = this.layout(this.activeNode.column || 0);
216
+ }
217
if (key.includes('down') || key.includes('up')) {
218
event.preventDefault();
219
const children = this.parentByChildIndex(this.activeNode.column).children;
0 commit comments