Доступ к свойству данных DataGrid в компонент
Я хотел бы получить доступ и модифицировать программно связанный набор данных для DataGrid (DxDataGridComponent).
Для этого:
export class MyComponent implements AfterViewInit {
@ViewChild(DxDataGridComponent) dataGrid: DxDataGridComponent;
ngAfterViewInit() {
this.dataGrid.instance.xxxxxxxx;
//how to access the data? is correct? which property to access
}
}