After the problem with this, I used (in the form class)
$hidden = $this->createElement('hidden','hiddenElement');
$hidden->setAttrib('xxx','my value');
$this->addElement($hidden);
Retrieve value with
$form->hiddenElement->getAttrib('xxx');
This is not an optimal solution, but it works for me.
source
share