Quote:
Originally Posted by rufinus
Hi,
.. snip ..
PHP Code:
$this->_helper->actionStack('menu','nav');
but the menu action would write to "default", how can it write to the 'nav response object' ?
|
You can set the response segment for
PHP Code:
$this->layout()->nav
by using:
PHP Code:
$this->_helper->viewRenderer->setResponseSegment('nav');
inside NavController::menuAction().