creating an new row for edit/delete links in the datatable

working on creating/editing records.
This commit is contained in:
Naomi 2013-07-23 18:01:43 -04:00
parent 69afc715d1
commit ecb2f81211
5 changed files with 215 additions and 72 deletions

View file

@ -11,6 +11,7 @@ class PlayouthistoryController extends Zend_Controller_Action
->addActionContext('edit-aggregate-item', 'json')
->addActionContext('create-list-item', 'json')
->addActionContext('edit-list-item', 'json')
->addActionContext('delete-list-item', 'json')
->addActionContext('update-list-item', 'json')
->addActionContext('update-aggregate-item', 'json')
->addActionContext('create-template', 'json')
@ -137,10 +138,10 @@ class PlayouthistoryController extends Zend_Controller_Action
public function editListItemAction()
{
$file_id = $this->_getParam('id');
$history_id = $this->_getParam('id', null);
$historyService = new Application_Service_HistoryService();
$form = $historyService->makeHistoryItemForm($file_id);
$form = $historyService->makeHistoryItemForm($history_id);
$this->view->form = $form;
$this->view->dialog = $this->view->render('form/edit-history-item.phtml');
@ -148,6 +149,14 @@ class PlayouthistoryController extends Zend_Controller_Action
unset($this->view->form);
}
public function deleteListItemAction()
{
$history_id = $this->_getParam('id');
$historyService = new Application_Service_HistoryService();
$historyService->deletePlayedItem($history_id);
}
public function updateListItemAction()
{
$request = $this->getRequest();