Hello How can I make hidden multi checkbox in zend form?
A:
This "could" work. Iam not on my dev machine in the moment
$box = new Zend_Form_Element_Checkbox('checkbox');
// set view helper to render, to formHidden
$box->helper = 'formHidden';
ArneRie
2010-05-10 13:46:22
I think this hide form ! not only checkbox
Behrang
2010-05-10 18:54:57
take a look on Zend_Form_Element_Hidden, this uses altough this helper
ArneRie
2010-05-11 04:12:36
A:
Using the Zend_Form_Decorator, set the css class of the item in question to hidden and in the stylesheet create a style and set the display property to hidden.
Brandon_R
2010-05-10 20:39:04