creating dependent drop down list in zend form

599 Views Asked by At

does one have any idea how i can create dependent drop downs (Select) in Zend Form. i.e two drop downs, country and city. city is only populated when country is chosen. thanks

1

There are 1 best solutions below

0
On

In zend element (country) you have to add a attribute

'onchange' => 'fillCityBox(this.value)'

This function (fillCityBox) fills the city dropdown by using ajax.