[flexcoders] Re: View helpers

2006-03-13 Thread dopenhagen
Hi Dan, Check out the samples in the Cairngorm framework. They worked for me http://www.richinternetapps.com/archives/94.html Cheers, Pedro --- In flexcoders@yahoogroups.com, Dan Thomas [EMAIL PROTECTED] wrote: Can anyone offer a simple example of the view helper pattern? I

[flexcoders] RE: View helpers

2006-03-13 Thread Steven Webster
Title: [flexcoders] File - flexcodersFAQ.txt Dan, Over on http://www.macromedia.com/devnet/flex you'll see I've been serialising a bunch of articles on the various patterns in Cairngorm - and that the View Helper is conspicuous by it's absence. That's not to say that the View Helper

[flexcoders] RE: View helpers

2006-03-13 Thread Venu Vasireddy
Title: [flexcoders] File - flexcodersFAQ.txt It decouples the presentation tier with business tier. So from JSP you never has to access EJB or DAO directly, It is done through "View Helper" in the form bean (JSP usebean) or as JSTL tags. But with MVC, JSP never have to access