Hello experts,
How to get value from hidden element using Phalcon Forms and Volt?
SalesForm.php
class SalesForm extends Form
{
public function initialize($entity=null, $options=null)
{
$this->add(new Hidden('productIdList', array('value'=>'12345')));
}
}
sales.volt
// I tried this method, but it show no value
{{ form.getValue("productIdList") }}
I've read the API doc. But still no luck finding appropriate property or method.
Thank you.
Jim