Dispatching event from advancedDatagrid to its item renderer component

502 Views Asked by At

I Need to catch an event in itemrenderer component dispatched from its parent i.e an advanced datagrid. How could i achieve it. Please suggest me on this.

Thanks in advance.

Regards

2

There are 2 best solutions below

0
On BEST ANSWER

Implement IDropInListItemRenderer with your ItemRenderer. Its property listData has a property owner which would be your AdvancedDataGrid. You could subscribe to the events of listData's owner in listData setter function.

0
On

Item renderer has owner property, which should be data grid, use it to add listener.