BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ejs-grid . . . (rowSelecting)="rowSelecting($event)">
. . . .
</ejs-grid>
|
export class DefaultComponent implements OnInit {
public data: Object[] = [];
@ViewChild('grid')
public grid: GridComponent;
...
ngAfterViewInit(): void {
this.grid.rowSelecting.subscribe((e) => console.log('rowSelecting'));
this.grid.rowSelected.subscribe((e) => console.log('rowSelected'));
}
}
|