gpt4 book ai didi

php - 从 Zend Radio 表单元素中删除一个选项

转载 作者:可可西里 更新时间:2023-11-01 01:07:27 25 4
gpt4 key购买 nike

一个简单的问题。我的表单中有一个带有多选项的 Zend_Form_Element_Radio 元素。我想删除 Controller 中的一个选项。

我找到了如何禁用一个选项...

$element = $membershipForm->getElement('myElement');
$element->setAttrib('disable', array('value'));

但是我怎样才能删除它呢?删除一些装饰器?或者有更好的方法吗?

提前致谢!

最佳答案

由于每个 FormElement 都有一个唯一的标识符,因此删除它非常简单。

$form->removeElement($id); // most likely when removing from within the controller
$this->removeElement($id); // when removing from within the form object
$selectElement->removeMultiOption('value'); // To remove a single option from a select

这就是你所需要的;)

关于php - 从 Zend Radio 表单元素中删除一个选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7583243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com