I have added an event listener for a particular event, for e.g.
CollectionEvent.COLLECTION_CHANGE. Inside that event listener, based
on a certain condition, I want to call the default event handler for
that event. How is it possible? One way I have tried out is :
Inside the event listener :
If(Condition)
{
Remove event listener
dispatch event
add event listener again
}
This results in event overflow, which means that removing event
listener is not working. How to do it?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---