ZF2 Select element usage
问题 I'm using Zend Framework 2 and I need a Dependent Dropdown. When user select an category (cat_id on my example) the system fills the subcategory (sca_id) with the correct elements. I could do that by creating an application like this: My form looks like: $this->add(array( 'name' => 'cat_id', 'type' => 'Zend\Form\Element\Select', 'options' => array( 'label' => 'Categoria', 'value_options' => array( '' => '', ), ), )); $this->add(array( 'name' => 'sca_id', 'type' => 'Zend\Form\Element\Select',