我使用Zend框架使用一个选择阵列概念(下拉框)2种形式。 从MenuForm.php代码片段如下:
$options_for_select = $menuTable->GetParents();
$this->add(array(
'type' => 'Zend\Form\Element\Select',
'name' => 'parent',
'attributes' => array(
'options' => $options_for_select,
),
'options' => array(
'label' => 'Select parent item',
),
)
);
当此下拉的变化,我想填充另一个下拉列表的形式与相关的父下拉列表中选择项目的选项列表。
我怎样才能做到这一点?
谢谢。