ext error with zend framework mvc
- by terrani
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?