[symfony-users] Re: Best way to implement a multi step form

2010-04-14 Thread fRAnKEnSTEin
>I was thinking about >saving form data from step 1 to step 2 in the session, but I may have >problems with form serialisation. Theres no prolbem with that(in fact there are 2 popular ways of doing this: a)using session or b)using cookies)..because what you are going to sve in session is an array

Re: [symfony-users] Re: Best way to implement a multi step form

2010-04-13 Thread Lee Bolding
There's several workflow plugins in the plugin repo that may be worth investigating (pageflow, especially) I know there's a pretty complex one based around the eZ Workflow component - I looked at that a while back with a view to creating a plugin along the lines of Spring WebFlow... On 13 Apr

[symfony-users] Re: Best way to implement a multi step form

2010-04-13 Thread AJStoneham
Is the standard way to go through a mult-step work-flow? I would like to know too. I don't think you will have a problem with your approach. I think back in the day I had problems serializing forms because some widgets had an unrealizable database/pdo handle bound to them, but I think its a non i

[symfony-users] Re: Best way to implement a multi step form

2010-04-13 Thread Vapirov
http://blog.adryjanek.eu/2009/03/24/symfony-12-and-multipage-form-wizard/ On 13 апр, 14:03, Juampy72 wrote: > Hi all, > > I need to split a form it in various steps. > > So far, I have created a single Form class with all the fields but, > how could I implement in in consecutive pages? I was thin