Re: [fw-general] Zend_Form multipage examples?

2008-02-12 Thread Simon Mundy
Hi Justin On top of what you have here for persisting data from form submission, the helper proposal allows you to specify the order in which forms are processed. So you can prevent someone from jumping straight to the 'personal' action if the 'siteinformation' form has not yet been valid

Re: [fw-general] Zend_Form multipage examples?

2008-02-12 Thread Matthew Weier O'Phinney
-- Justin Hendrickson <[EMAIL PROTECTED]> wrote (on Tuesday, 12 February 2008, 04:09 PM -0600): > You'll probably want to store the data from validating the subform in > your session so you can retrieve it later; otherwise, your data will be > lost. There's a variety of ways to do that

Re: [fw-general] Zend_Form multipage examples?

2008-02-12 Thread Justin Hendrickson
> > You'll probably want to store the data from validating the subform in > your session so you can retrieve it later; otherwise, your data will be > lost. There's a variety of ways to do that -- using $_SESSION directly, > or using Zend_Session -- so I won't go into details. I just found the per

Re: [fw-general] Zend_Form multipage examples?

2008-02-12 Thread Simon Mundy
Or you can use Jurrien's proposal code as a starting point :) See http://framework.zend.com/wiki/pages/viewpage.action?pageId=42130 You'll probably want to store the data from validating the subform in your session so you can retrieve it later; otherwise, your data will be lost. There's a var

Re: [fw-general] Zend_Form multipage examples?

2008-02-12 Thread Matthew Weier O'Phinney
-- Justin Hendrickson <[EMAIL PROTECTED]> wrote (on Tuesday, 12 February 2008, 01:56 PM -0600): > I'm trying to put together a simple Zend_Form setup for a multipaged form, but > the documentation on implementing the multipage part is a bit sparse. I'm aware of that; I haven't had a chance to wor