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
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.
Item renderer has owner
property, which should be data grid, use it to add listener.
精彩评论