can update an existing history item entry. Form is pre-populated.

This commit is contained in:
Naomi 2013-08-02 18:16:23 -04:00
parent 590837a357
commit 31c604d09c
3 changed files with 139 additions and 57 deletions

View file

@ -158,7 +158,7 @@ class Application_Form_EditHistoryItem extends Zend_Form
'class' => 'btn his_item_save',
'label' => _('Save'),
'decorators' => array(
'ViewHelper'
'ViewHelper'
)
));
@ -168,7 +168,7 @@ class Application_Form_EditHistoryItem extends Zend_Form
'class' => 'btn his_item_cancel',
'label' => _('Cancel'),
'decorators' => array(
'ViewHelper'
'ViewHelper'
)
));
}
@ -236,6 +236,10 @@ class Application_Form_EditHistoryItem extends Zend_Form
$el->setDecorators(array('ViewHelper'));
$templateSubForm->addElement($el);
}
}
}
public function fillFields() {
}
}