I have a zend form that has a select box with 1000+ id->name options sorted alphabetically.
When rendered and looking at it in a browser, if you type Ch
it goes all the way to that option;
Is there a way I can set the value to be selected via the first few letters after the form has been initialized? In other words $form->getElement('name')->setSelected('Ch')
or similar;
I know that with setValue(34)
I can set the name to be selected that has the ID 34.
Just wrote the code myself