Integrating jQuery, jQuery UI, and jQuery Themes with the Zend Framework - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:38:04Z http://stackoverflow.com/feeds/question/746676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/746676/integrating-jquery-jquery-ui-and-jquery-themes-with-the-zend-framework 0 Integrating jQuery, jQuery UI, and jQuery Themes with the Zend Framework Andrew 2009-04-14T07:46:35Z 2009-10-24T17:36:06Z <p><strong>Update:</strong> this question refers to an older version of Zend Framework. To see how to integrate jQuery with a Zend Framework 1.9.4 (1.8+) application <a href="http://stackoverflow.com/questions/1616857/">refer to this question</a>.</p> <p><hr /></p> <p>I think I understand the basic concepts, but I must be going wrong somewhere. I'm trying to integrate jQuery, jQuery UI, and jQuery Themes into my Zend Framework application.</p> <p>In my bootstrap, I'm registering the jQuery view helper:</p> <pre><code>$view-&gt;addHelperPath(self::$root . '/library/ZendX/JQuery/View/Helper/', 'ZendX_JQuery_View_Helper'); </code></pre> <p>In my form, I have a date picker element:</p> <pre><code>$date = new ZendX_JQuery_Form_Element_DatePicker('date'); </code></pre> <p>And in my layout, I'm calling the jQuery view helper:</p> <pre><code>&lt;head&gt; &lt;?= $this-&gt;jQuery() ?&gt; &lt;/head&gt; </code></pre> <p>Once I've done that, I can actually use the date picker. The only problem is that the calendar is totally screwed up. It doesn't display correctly at all.</p> <p>From what I understand, the javascript files are automatically included (and hosted by Google). So in order to use different themes (from <a href="http://jqueryui.com/themeroller/" rel="nofollow">ThemeRoller</a>) you have to host the js and css files on your own server. What process should I go through in order to get my date picker to display a different theme?</p> <p><strong>Update:</strong> I got it to work by doing this. But I'm not sure if this is the most effective way.</p> <pre><code>&lt;head&gt; &lt;? //I couldn't get this way to work //$this-&gt;jQuery()-&gt;addStylesheet('http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/themes/smoothness/jquery-ui.css'); //But this way works $this-&gt;jQuery()-&gt;addStylesheet('/js/jquery/themes/ui-lightness/jquery-ui-1.7.1.custom.css') -&gt;setLocalPath('/js/jquery/js/jquery-1.3.2.min.js') -&gt;setUiLocalPath('/js/jquery/js/jquery-ui-1.7.1.custom.min.js') ?&gt; &lt;?= $this-&gt;jQuery() ?&gt; &lt;/head&gt; </code></pre> http://stackoverflow.com/questions/746676/integrating-jquery-jquery-ui-and-jquery-themes-with-the-zend-framework/747468#747468 0 Answer by Till for Integrating jQuery, jQuery UI, and jQuery Themes with the Zend Framework Till 2009-04-14T13:11:22Z 2009-04-14T13:22:04Z <p>If you're using the Google CDN, you just have to host the .css files on your own server. I don't know if ZendX_Jquery uses that. And that should be all to get it working. Can you share more code (e.g. the source code of the rendered page) if my answer does't help you?</p> http://stackoverflow.com/questions/746676/integrating-jquery-jquery-ui-and-jquery-themes-with-the-zend-framework/750766#750766 2 Answer by Stefan Gehrig for Integrating jQuery, jQuery UI, and jQuery Themes with the Zend Framework Stefan Gehrig 2009-04-15T08:21:43Z 2009-04-15T08:21:43Z <p>Using the <code>ZendX_JQuery_View_Helper_JQuery</code> view helper (of course you can also register the stylesheet with the <code>Zend_View_Helper_HeadStyle</code> view helper, but using the jQuery view helper will ensure that the stylesheet is only included when jQuery is enabled) you can register a stylesheet served from the Google CDN:</p> <pre><code>$view-&gt;jQuery()-&gt;addStylesheet('http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/themes/smoothness/jquery-ui.css'); </code></pre> <p><em>smoothness</em> is the theme name according to the <a href="http://jqueryui.com/themeroller/" rel="nofollow">jQuery UI ThemeRoller</a> gallery. See <a href="http://blog.jqueryui.com/2009/03/jquery-ui-171/" rel="nofollow">jQuery UI 1.7.1 release announcment blog post</a> for more theme urls.</p> <p>By the way, I'd suggest to jQuery-enable the view by using <code>ZendX_JQuery::enableView($view)</code>. I personally think that this is much more apparent approach.</p> http://stackoverflow.com/questions/746676/integrating-jquery-jquery-ui-and-jquery-themes-with-the-zend-framework/1150197#1150197 0 Answer by emeraldjava for Integrating jQuery, jQuery UI, and jQuery Themes with the Zend Framework emeraldjava 2009-07-19T16:05:56Z 2009-07-19T16:05:56Z <p>I think you need to download the jquery ui css files. Extract the css files from the zip and make them available locally within your zend app. I added the files to '[Your_zend_project_root]\public\js\'. In your layout.phtml file use the 'addStylesheet()' method to add the paths to the local css files. You need to change the specific path for the theme name you selected.</p> <pre><code>&lt;?php echo $this-&gt;jQuery() -&gt;setUiVersion('1.7.2') -&gt;addStylesheet('/js/jquery-ui-1.7.2/development-bundle/themes/ui-lightness/jquery-ui-1.7.2.custom.css');?&gt; </code></pre>