I got this in a vew.html.php
I works OK, but I need to get from 52 and 52,53
I did it in a foreach but just brings the first (52) ...
$this->model = $model = $this->getModel();
$this->state = $state = $this->get('State');
$state->set('context', 'detalleoficio.adddetalleoficio');
$state->set('detalleoficio.id', 52);
$this->item = $item = $this->get('Item');
$this->form = $form = $this->get('Form');
$fieldSet = $this->form->getFieldset('adddetalleoficio.form_1');
echo "<pre>**".print_r($fieldSet,true);
why I'm doing this?
Because I got a Edit form which needs to edit 3 records from a table.
Any Ideas or some pointing directions?
Thanks!