Re: [flexcoders] ItemRenderer dispatch event problem

2009-07-05 Thread Sefi Ninio
Read up on event life cycle, specifically about capture, target and bubble phases. dispatchEvent(new Event(eventType)); will dispatch the event. But since it's a renderer (let's say a datagrid renderer for example sake), the only way for you to listen for the event is on the datagrid itself, i.e. d

[flexcoders] ItemRenderer dispatch event problem

2009-07-04 Thread j2me_soul
How can let the parent of itemrenderer know something is happened ? I use dispatchevent function, but it doesn't work.