Ver Mensaje Individual
  #6 (permalink)  
Antiguo 11/07/2011, 10:52
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: Problemas con ZendX_JQuery y mi propio Zend_View_Helper_Abstract

Muy raro, yo lo tengo tal cual en mi proyecto y funciona perfectamente con $jQuery->enable(), de hecho mi cabecera es así:
Código PHP:
Ver original
  1. <?php echo $this->doctype(); ?>
  2. <?php ZendX_JQuery_View_Helper_JQuery::enableNoConflictMode(); ?>
  3. <html>
  4. <head>
  5.     <?php echo $this->headTitle(); ?>
  6.     <?php echo $this->headScript()->appendFile('/js/ac.js'); ?>
  7.     <?php echo $this->headMeta(); ?>
  8.     <?php echo $this->jQuery()->enable()->addJavascriptFile('/js/ddsmoothmenu.js'); ?>
  9.     <?php echo $this->headLink()
  10.                     ->appendStylesheet('/css/global.css')
  11.                     ->appendStylesheet('/css/popup.css')
  12.                     ->appendStylesheet('/css/ddsmoothmenu-v.css')
  13.                     ->appendStylesheet('/css/ddsmoothmenu.css'); ?>
  14. </head>

Saludos.