开发者

subforms in Zend

开发者 https://www.devze.com 2022-12-22 06:23 出处:网络
How su开发者_开发知识库bforms created in zend? Please explain with an example.See the chapter on Subforms in the ZF Reference Guide:

How su开发者_开发知识库bforms created in zend? Please explain with an example.


See the chapter on Subforms in the ZF Reference Guide:

$subForm = new Zend_Form_SubForm;
$subForm->addElements(
     // element configurations
);

$mainForm = new Zend_Form;
$mainForm->addSubForm($subForm, 'subformName');

Also see http://devzone.zend.com/search/results?q=zend+form

0

精彩评论

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