add show form is broken up into tabs.

This commit is contained in:
Naomi 2011-01-21 13:25:12 -05:00
parent 42e2e0d407
commit c83244fb3a
8 changed files with 38 additions and 159 deletions

View file

@ -6,7 +6,7 @@ class Application_Form_AddShowWho extends Zend_Form_SubForm
public function init()
{
// Add hosts autocomplete
$this->addElement('text', 'hosts_autocomplete', array(
$this->addElement('text', 'add_show_hosts_autocomplete', array(
'label' => 'Type a Host:',
'required' => false
));
@ -19,7 +19,7 @@ class Application_Form_AddShowWho extends Zend_Form_SubForm
}
//Add hosts selection
$hosts = new Zend_Form_Element_MultiCheckbox('hosts');
$hosts = new Zend_Form_Element_MultiCheckbox('add_show_hosts');
$hosts->setLabel('Hosts:')
->setMultiOptions($options)
->setRequired(true);