Zend Framework-表单元素选择选项禁用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Zend Framework-表单元素选择选项禁用相关的知识,希望对你有一定的参考价值。
On Zend Framework you can add options on Select Element on Form.php or Controller Action, and after you can disable it, on Form.php or Controller.php too.
Form.php $this->addElement( 'select', 'select_name', 'label' => 'Element Text Label:', 'required' => true, 'multiOptions' => array('value1' => 'text1', 'value2' => 'text2', 'value3' => 'text3', 'value4' => 'text4'), //'disable' => array('value2', 'value3') ); Controller.php //$selOptions = array('value1' => 'text1', 'value2' => 'text2', 'value3' => 'text3', 'value4' => 'text4'); //$form->getElement('select_name')->addMultiOptions($selOptions);
以上是关于Zend Framework-表单元素选择选项禁用的主要内容,如果未能解决你的问题,请参考以下文章
在 Zend Framework 中按需启用对表单的 Dojo 支持