显示组件时聚焦kendo-grid

时间:2018-04-04 06:39:21

标签: kendo-grid kendo-ui-angular2

当我的组件(带网格)被加载/显示/导航时,如何关注kendo grid?我想在显示网格(我的组件)后立即navigate

我尝试过:

import { GridComponent } from "@progress/kendo-angular-grid";

@ViewChild(GridComponent) public grid: GridComponent;

public ngAfterViewInit(): void
{
   this.grid.wrapper.nativeElement.focus();
}

但网格没有集中。甚至我的组件也不是,因为在我点击一个单元格之前永远不会触发事件按键。

@HostListener("keyup", ["$event"])
handleKeyboardEvent(event: KeyboardEvent)

0 个答案:

没有答案