I'm trying to build a form using Zend_Form component, but the number of elements varies. The informations for each Zend_Form elements are stored in a database (name, options, validators, filters, etc.).
The application I'm working on consists of building surveys which contains a varying number of questions, each question is associated with different arrays of answers. Ultimately my goal is to build arrays of radio/checkbox buttons, dynamically, server-side.
I'm looking for a pretty way to generate my form, but I'm not sure of the best way to load the model within the form. Should the model be loaded in the controller then passed (somehow, via a parameter ?) directly to the form, or is it better to load the model within the Form init() method ? Where's the best place to put the logic, should it be within the form class, or within the controller, or within the model ?
My idea is to fetch form elements properties (name, rules, filters, etc.) in the database, then iterate and finally render the form. What do you think of this approach ? Ultimately, elements will be dynamically added (client-side), this time, using AJAX and a JavaScript library (such as jQuery).
Here are a couple useful links I found via Google, but I think they all answer a slightly different question than mine :
On building dynamic forms, server side : - http://framework.zend.com/wiki/display/ZFPROP/Zend_Form+generation+from+models+-+Jani+Hartikainen - http://weierophinney.net/matthew/archives/200-Using-Zend_Form-in-Your-Models.html - http://codeutopia.net/blog/2009/01/07/another-idea-for-using-models-with-forms/
On building dynamic forms, client side, with AJAX processing : - http://www.jeremykendall.net/2009/01/19/dynamically-adding-elements-to-zend-form/
