문제

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!

도움이 되었습니까?

해결책

Try,

$this->addElement('MultiCheckbox', 'element-name', array(
                     'label' => 'Multiple Checkboxex',
                    'class'=>'example-class',
                    ));
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top