0

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

Piyush Giri
  • 91
  • 6
  • 19

2 Answers2

1

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.

Maria Sakharova
  • 1,389
  • 15
  • 15
0

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

alxx
  • 9,897
  • 4
  • 26
  • 41