ext error with zend framework mvc

Posted by terrani on Stack Overflow See other posts from Stack Overflow or by terrani
Published on 2010-03-27T06:05:34Z Indexed on 2010/03/27 6:13 UTC
Read the original article Hit count: 438

Filed under:
|

Hi,

I am trying to setup ext javascript grid within zend framework mvc. I included ext css and js using the following code.

$this->headScript()
     ->appendFile('/Resource/scripts/ext/jquery-1.4.2.js')
     ->appendFile('/Resource/scripts/ext/jquery/ext-jquery-adapter.js')
     ->appendFile('/Resource/scripts/ext/jquery/ext-all.js');

$this->headLink()
     ->appendStylesheet('/Layouts/admin/css/content.css')
     ->appendStylesheet('/Layouts/admin/css/ui.css')
     ->appendStylesheet('/Layouts/admin/css/button.css')
     ->appendStylesheet('/Layouts/admin/css/moon.css')
     ->appendStylesheet('/Resource/scripts/ext/css/ext-all.css');

when I run the code, I get the following error message from firefox.

syntax error [Break on this error] \n

What should I do to fix this?

© Stack Overflow or respective owner

Related posts about ext

Related posts about zend-framework