PHP Zend Framework - 表单元素选择选项禁用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Zend Framework - 表单元素选择选项禁用相关的知识,希望对你有一定的参考价值。

Form.php

$this->addElement(
  'select', 
  'select_name', 
  array(
    '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);
$form->getElement('select_name')->setAttrib('disable', array('value2', 'value3'));

以上是关于PHP Zend Framework - 表单元素选择选项禁用的主要内容,如果未能解决你的问题,请参考以下文章

Jenkins 上的 Zend Framework 2 单元测试不起作用

Zend Framework 和 Doctrine 2 - 我的单元测试是不是足够?

php zend framework

PHP Zend Framework:引导Zend_Log(登录firebug)

Zend Framework错误:无法打开所需的'Zend / Application.php'

PHP Zend Framework:禁用布局