开发者

Zend_Form submit stops working, when displayed with Display Groups

开发者 https://www.devze.com 2023-04-10 04:17 出处:网络
My Zend_Form has only two elements, text and submit. When I render the Form as whole, everything works fine.

My Zend_Form has only two elements, text and submit.

When I render the Form as whole, everything works fine.

echo $this->form;

When I render the Form part by part, it gets rendered, but the submit button triggers nothing.

echo $this->form->range;
echo $this->form->submit;

Rendering wiht display groups also leaves the submit butt开发者_如何学Goon dead.

Any ideas?

Thanks in advance!


When you echo form object its magic function __toString() gets called which outputs the html generated by default registered decorators . Which includes "" html tag . Which wraps up all the elements added to the zend from . So if you are echoing individual elements you need to manually wrap elements inside html form tag .

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号