当我的组件(带网格)被加载/显示/导航时,如何关注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)