Getting Zend_Navigation menu to work with jQuery’s Fisheye

I haven’t seen the way yet either in terms of making a custom renderer. Here’s what I ended up doing though: First, instead of rendering the default menu() call, create a partial to render into: // menu.phtml is partial, cms is module $partial = array(‘menu.phtml’, ‘cms’); $this->navigation()->menu()->setPartial($partial); echo $this->navigation()->menu()->render(); Then (from the docs), you can … Read more