How to add a ZendX Jquery library in zend bootstrap file ? my following code seems not working properly.
protected function _initViewHelper()
{
$this->bootstrap('view');
$view = $this->getResource('view');
$view->addHelperPath('ZendX/JQuery/View/Helper/', 'ZendX_JQuery_View_Helper');
}
Hi the problem with you code is that, you need to define an Action Helper object. The following code might solve your problems
Hope this will helps for you 😉