从 Zend Radio 表单元素中删除选项

发布于 2024-12-07 09:48:21 字数 285 浏览 0 评论 0原文

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

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

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

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

提前致谢!

An easy question.
I have a Zend_Form_Element_Radio element in my form with multioptions.
I'd like to remove an option in my controller.

I've found how to disable an option ...

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

But how can I remove it?
With removing some decorators? Or is there a better way?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

私藏温柔 2024-12-14 09:48:21

由于每个 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

这就是你所需要的;)

Since every FormElement has a unique identifier it is pretty simply to remove it.

$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

That's all you need ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文