Tuesday, December 13, 2011

подключение Jquery в ExtJS

Все мы любим jQuery за ее прозрачный синтаксис и большое количество плагинов на все случаи жизни. И в моем проекте мне пришлось сбросить часть забот на один плагин jQuery, занимающийся трансформацией JSOn в XML.

После подключения jquery в индексном файле все перестало работать, попробовал добавить адаптер Jquery в ExtJS - та же история. Пришлось погуглить, оказывается предусмотрен специальный порядок подключения файлов в головном файле.


Base LibraryInclude OrderGet Library
Ext Standaloneext-base.js
ext-all.js (or your choice of files)
http://www.extjs.com/download
Yahoo! UI (.12+)yui-utilities.js (or your choice of YUI base files)
ext-yui-adapter.js
ext-all.js (or your choice of files)
http://developer.yahoo.com/yui/
jQuery (1.1+)jquery.js
jquery-plugins.js // required jQuery plugins
ext-jquery-adapter.js
ext-all.js (or your choice of files)
http://jquery.com/
http://docs.jquery.com/Plugins
Prototype (1.5+) /
Scriptaculous (1.7+)
prototype.js
scriptaculous.js?load=effects (or whatever you want to load)
ext-prototype-adapter.js
ext-all.js (or your choice of files)
http://www.prototypejs.org/
http://script.aculo




Также на заметку: Using_Ext_With_jQuery, Using_jQuery_with_Other_Libraries

No comments:

Post a Comment