$mon = new Zend_Form_Element_Checkbox('days[mon]');
$tue = new Zend_Form_Element_Checkbox('tue');
how will I access "days[mon]" element inside view script for the form
$form = new Zend_Form();
$form->addElement($mon);
$form->setDecorator('form',array('ViewScript','viewscript'=>'form.phtml'));
I can easily access "tue" inside form.phtml
$this->element->tue
but how to access "days[mon]" ??