hi all, $funcName is a parameter (comes from extjs)
public function init()
{
$this->funcName = $this->getRequest()->getParam('funcName');
// here must get $funcName and pass it to listAction then json
create,..... HOW ..?
$this->_helper->contextSwitch()
->addActionContext('list', 'json')
->setAutoJsonSerialization(true)
->initContext();
.
.
.
.
How can I pass $funcName to listAction?
public function listAction($funcName)
{
// need funcName
echo $funcName ;
Regards,
Shahrzad Khorrami
