Hello,
I can intercept (onCellEdit) events and (onRowEdit) events on the igx0hierarchical grid just fine but I can't get the edit events to fire for the igx-row-island:
View:
Hello Eric,
Thank you for posting in our forum.
Those events trigger only for the particular child grid instances, which you can get on the onGridCreated event of the related row island. You can subscribe to the related child grid events there. For example:
<igx-row-island … (onGridCreated)="gridCreated($event)">
public gridCreated(event: IGridCreatedEventArgs){
event.grid.onCellEdit.subscribe(($event) => this.editDone($event));
}
Let me know if you have any additional questions.
Regards,
Maya Kirova