Ver Mensaje Individual
  #43 (permalink)  
Antiguo 09/08/2011, 09:00
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: [Zend] FlashMessenger En Bootstrap

Esto es lo que yo hago, en mi bootstrap:
Código PHP:
Ver original
  1. protected function _initJQuery()
  2. {
  3.     $this->bootstrap('view');
  4.     $View = $this->getResource('view');
  5.     $View->addHelperPath('ZendX/JQuery/View/Helper/', 'ZendX_JQuery_View_Helper');
  6.    
  7.     $View->jQuery()
  8.         ->setLocalPath('/js/jquery-1.3.2.min.js')
  9.         ->setUiLocalPath('/js/jquery-ui-1.7.1.custom.min.js')
  10.         ->addStylesheet('/css/theme/jquery-ui-1.7.1.custom.css');
  11. }

En mi Layout:
Código PHP:
Ver original
  1. <?php echo $this->jQuery(); ?>

Con eso deberia de funcionar sin problemas.

Saludos.