Hmm to z tym bootstrapem rzeczywiscie nie działa troche sie pośpieszyłem

w layout zrób coś takiego :
<?
if ($this->jQuery()->isEnabled()) {
$this->jQuery()
->setLocalPath($this->baseUrl('js/jquery/js/jquery-1.4.4.min.js'));
if ($this->jQuery()->uiIsEnabled()) {
$this->jQuery()
->setUiLocalPath($this->baseUrl('js/jquery/js/jquery-ui-1.8.9.custom.min.js'))
->addJavaScriptFile($this->baseUrl('js/jquery.ui.nestedSortable.js'))
->addJavaScriptFile($this->baseUrl('js/jquery/js/jquery-ui-timepicker-addon.min.js'))
->addJavaScriptFile($this->baseUrl('js/jquery/js/jquery.cleditor.min.js'))
->addStylesheet($this->baseUrl('js/jquery/css/start/jquery-ui-1.8.9.custom.css'))
->addStylesheet($this->baseUrl('js/jquery/css/jquery.cleditor.css'));
}
}
?>
i np w jakims controlerze chcesz miec jquery wywołujesz :
$this->view->jQuery()->enable();
a jak chcesz razem z ui: to
$this->view->jQuery()->enable();
$this->view->jQuery()->uiEnable();
i to działa na 100%
W bootstrapie hmm tak patrze na swoje projekty to ja korzystam w tym celu z pluginu ktory napisalem i zarejestrowalem w bootstrapie przez :
$this->bootstrap('layout');
$layout = $this->getResource('layout');
$view = $layout->getView();
$fc = Zend_Controller_Front::getInstance();
$fc->registerPlugin(new Plugin_ViewHelper($view));
..no i w srodku tego pluginu w zaleznosci od modulu ładuje skrypty/style poprzez
$this->_view->headLink()->appendStylesheet(Zend_Controller_Front::getInstance()->getBaseUrl().'/style/style.css');
$this->_view->headLink()->appendStylesheet(Zend_Controller_Front::getInstance()->getBaseUrl().'/style/shop_default.css');
i to działa tez na 100%