[fw-general] Zend_Form Question

2010-03-02 Thread Arthur M. Kang
Is there a way to render different parts of the form at a time? I want to render different display groups around a page, so I need to somehow render the forms opening tags, render the display groups around the page with ?= $this-form-getDisplayGroup('part-xx') ?, and then somehow need to

[fw-general] Zend_Form question.

2009-05-22 Thread Philip G
I'm write a multi-page profile site. It's just all fields, no content (other than fill out these fields!). I'm trying to create extendable elements with Zend_Form. The basic premise is I have several fields, about 15-20, of which about all are used on 1 or more pages. For example: email is used

[fw-general] Zend_Form question

2008-12-23 Thread sosh
Just a small question regarding how zend_form works... I understand that to validate submitted data against a form we use something like: $form-isValid($_POST) However, then to work with the acual data we use: $form-getValues(); I don't really understand why in the first instance we are

Re: [fw-general] Zend_Form question

2008-12-23 Thread petewilliams1983
sosh wrote: Just a small question regarding how zend_form works... I understand that to validate submitted data against a form we use something like: $form-isValid($_POST) However, then to work with the acual data we use: $form-getValues(); I don't really understand why in the