将Zend Framework 2表单元素设置为禁用


Set Zend Framework 2 form element to disabled

我在将表单元素设置为禁用时遇到问题。我以为是

$dropDownForCheckBox = new Element'Select("asdf");
$dropDownForCheckBox->setOptions(['disabled', true]);

但是,这并没有产生我所期望的禁用属性。

提前感谢您的任何想法

只需使用禁用属性而不设置元素选项:

$dropDownForCheckBox->setAttribute('disabled', 'disabled');