Zend Form - How to set values on sub form elements?

淺唱寂寞╮ 提交于 2019-12-04 18:42:06

Not sure whether you want to set values of individual subform elements or all of them at once. Nevertheless you can use populate method. For example:

 $yourForm->populate(array(
    'subQuantity' => array(
        'quantity_6' => 'some value 1',
        'quantity_16' => 'some value 2',
        'quantity_18' => 'some value 3',
    )
));

EDIT:

Here are few ways of setting individual fields:

$yourForm->populate(array(
        'subQuantity' => array(     
            'quantity_16' => 'some value',
        )
 ));

 // OR

 $yourForm->getSubForm('subQuantity')->getElement('quantity_16')->setValue('some value');

 // this also should work (not sure if it works with underscore in 'quantity_16' though)

 $yourForm->subQuantity->quantity_16->setValue('some value');
    $formSuper = new ContractLink_Form_ContractAllotmentSuper();
    foreach($allotments as $key => $allotment)
    {
        $form = new ContractLink_Form_ContractAllotment();
        $form->populate($allotment);
        $formSuper->addSubForm($form, 'contractAllotmentForm' . $key);
    }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!