Question

Zend Framework has Zend_Form_Element_Multiselect element. But I haven't found any examples how to extend it and create a multiple select box which example is represented here: http://www.dhtmlgoodies.com/?whichScript=multiple_select

Maybe someone has done it and could share its own helper or provide an advice how to create multiple select box with Zend Framework ? Thank you!

Was it helpful?

Solution

Try,

$this->addElement('MultiCheckbox', 'element-name', array(
                     'label' => 'Multiple Checkboxex',
                    'class'=>'example-class',
                    ));
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top