You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
The documentation suggests following workflow with a form :
class MyObject {
public $id;
public $items = [];
}
class SubObjectFieldset extends Fieldset
{
public function __construct( $name = null, $options = [] )
{
parent::__construct('items');
$this->setHydrator(new \Zend\Hydrator\ObjectProperty());
$this->add([
'name' => 'id',
'type' => 'hidden',
]);
$this->add([
'name' => ’title',
'type' => ’text',
]);
}
}
class ObjectForm extends Form
{
public function __construct( $name = null, $options = [])
{
parent::__construct($name, $options);
$this->setObject( new Object() );
$this->setHydrator( new \Zend\Hydrator\ObjectProperty() );
$this->add([
'name' => 'id',
'type' => 'hidden',
]);
$this->add([
'name' => 'items',
'type' => 'Zend\Form\Element\Collection',
'options' => [
'target_element' => [
'type' => SubObjectFieldset::class,
]
]
]);
...
}
}
$o = $db->getObject();
$f = new MyForm();
$f->bind($o);
$data = $request->getPost();
if ( !$f->setData($data)->isValid() ) {
… do something
}
// at this point it is expected $o has been populated with post $data
// but it doesn’t happen
$db->saveObject($o);
setData() call updates only MyObject->id, but not MyObject->items, even though $data provides respective values. If workflow is changed as following, then MyObject->items updated as well
$o = $db->getObject();
$f = new MyForm();
$f->bind($o);
$f->isValid(); // <— add validation here
$data = $request->getPost();
if ( !$f->setData($data)->isValid() ) {
… do something
}
// now $o has been populated with received data
$db->saveObject($o);
The text was updated successfully, but these errors were encountered:
The documentation suggests following workflow with a form :
setData() call updates only MyObject->id, but not MyObject->items, even though $data provides respective values. If workflow is changed as following, then MyObject->items updated as well
The text was updated successfully, but these errors were encountered: