It looks like you're new here. If you want to get involved, click one of these buttons!
'item_actions' => array('delete');
$config['modules']['packages'] = array('module_name' => 'Packages', 'exportable' => TRUE, 'table_actions' =>array('EDIT', 'VIEW'),'item_actions' =>array('EDIT', 'VIEW'));
Throwing a 404
@admin what are other options I can use for 'item_actions'? as I want to use this to send email with a textbox?
'item_actions'
Comments
$config['modules']['newsletters'] = array(
'module_name' => 'Newsletters',
'exportable' => true,
'table_actions'=>array('DELETE'),
'item_actions'=>array(),
);
the delete link failed to work, clicking on delete will result in 404 page
'item_actions' => array('delete');
$config['modules']['packages'] = array('module_name' => 'Packages', 'exportable' => TRUE, 'table_actions' =>array('EDIT', 'VIEW'),'item_actions' =>array('EDIT', 'VIEW'));
Throwing a 404
@admin what are other options I can use for
'item_actions'
? as I want to use this to send email with a textbox?