Re: wizard component question

2008-07-14 Thread ianh
I have a fair bit using the olders form wizard component (I think there are two versions floating around now). Basically each 'step' in the form has two methods associated with it, a method to display the page and an optional ,ethod to validate that specific page. If you return false from the sec

Re: wizard component question

2008-07-14 Thread DaveMahon
Wizard Component? That would be a third-party library AFAIK and you'll need request help from its development community. If you're using CakePHP 1.2, the FormHelper should display form validation errors for you. On Jul 14, 1:23 pm, Rich Goldman <[EMAIL PROTECTED]> wrote: > Hi, does anyone have e

wizard component question

2008-07-14 Thread Rich Goldman
Hi, does anyone have experience using the wizard component? I'm a little mystified by the following sample code from the wizard tutorial: |function processStepOne() { # do some validation stuff here return true (or false); } | What does "do some validation stuff here" mea