Re: [flexcoders] Can I just bypass Cairngorm events?

2007-05-08 Thread Bjorn Schultheiss
Hey Mike, It helps decouple the view and controller. If you hard hard-wire your view to controller you are essentially adding just logic to your view. There's been talk around 'ditching' the controller out of MVC and a lot of developers have. Check this post, http://weblogs.macromedia.com/

[flexcoders] Can I just bypass Cairngorm events?

2007-05-08 Thread munkydung
I've currently building a medium-large size application in Flex using Cairngorm. I've already decided not to use 'delegates'. Instead, I'm just updating the 'model' from within 'commands'. Now I'm seeing a pattern where each 'event' I create is just a container for a data structure to a 'command'.