RE: [flexcoders] click event handler of datagrid, make it fire on rows only

2007-06-03 Thread Swaroop C H
You can monitor MouseEvent.DOUBLE_CLICK event and then use mouseEventToItemRenderer to fetch the item renderer at the mouse position. If the item renderer is not present in the listItems[0] array, that mean it is not part of the header i.e. it is rendering a data/row. Regards, Swaroop

RE: [flexcoders] Main application class doesn't receive mouse events?

2007-04-10 Thread Swaroop C H
Hi Ronnie, AFAIK, if any of the event handlers calls event.stopPropagation() or event.stopImmediatePropagation(), it does not bubble up further. Other Flexcoders can correct me if I'm wrong :-) Regards, Swaroop _ Just want to understand if the main application class