ZendX_JQuery.xml 1.5 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zendx.jquery.introduction">
  4. <title>Introduction</title>
  5. <para>
  6. As of version 1.7, Zend Framework integrates <ulink
  7. url="http://jquery.com">jQuery</ulink> view and form helpers through
  8. its extras library. The jQuery support is meant as an alternative
  9. to the already existing Dojo library integration. Currently jQuery can
  10. be integrated into your Zend Framework applications in the following ways:
  11. </para>
  12. <itemizedlist>
  13. <listitem><para>View helper to help setup the jQuery (Core and UI) environment</para></listitem>
  14. <listitem><para>jQuery UI specific Zend_View helpers</para></listitem>
  15. <listitem><para>jQuery UI specific Zend_Form elements and decorators</para></listitem>
  16. </itemizedlist>
  17. <para>
  18. By default the jQuery javascript dependencies are loaded from the Google Ajax Library
  19. Content Distribution Network. The CDN offers both jQuery Core and jQuery UI access points and
  20. the view helpers therefore can already offer you most the dependencies out of the box. Currently
  21. the Google CDN offers jQuery UI support up to version 1.5.2, but the jQuery view and form helpers
  22. already make use of the UI library 1.6 version (AutoComplete, ColorPicker, Spinner, Slider).
  23. To make use of these great additions you have to download the release candidate version of the
  24. <ulink url="http://ui.jquery.com">jQuery UI library</ulink> from its website.
  25. </para>
  26. </sect1>