gpt4 book ai didi

php - 复合元素不起作用

转载 作者:可可西里 更新时间:2023-11-01 00:16:32 24 4
gpt4 key购买 nike

我正在尝试按照 Matthew O'Phinney 的教程进行操作,但一无所获。

http://weierophinney.net/matthew/archives/217-Creating-composite-elements.html

我要做的就是创建一个由复选框和输入文本组成的复合元素。

new Zend_Form_Element_Checkbox();
new Zend_Form_Element_Text()

我的代码太复杂了,有很多注释进出,但没有任何效果。我敢肯定它比这更容易,但我似乎走错了路。

最佳答案

这是一篇博文,向您展示如何创建一个包含 2 个或更多输入元素的表单元素(Zend_Form_Element 的实例)。

http://akrabat.com/zend-framework/a-zend-framwork-compount-form-element-for-dates/

您还可以使用子表单对多个元素进行分组。
链接:http://framework.zend.com/manual/en/zend.form.forms.html#zend.form.forms.subforms

    $subform = new Zend_Form_SubForm();
$subform->addElement('checkbox', 'status', array(
'decorators' => array(
'ViewHelper',
)
));
$subform->addElement('text', 'test', array(
'label' => 'Text',
'decorators' => array(
'ViewHelper',
'Label'
)
));
$this->addSubForm($subform, 'subformname');

关于php - 复合元素不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7409737/

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