Using jQuery UI in an application

0
I want to use a feature of jQuery UI, but i'm having trouble implementing it. What's the best place to link the jquery file? Should I just put it in the index.html or is it better to do it via an html snippet or something like that?
asked
2 answers
0

some widgets (feedback) use JQuery, if you want to control the version which is loaded use the index.html

answered
0

For a custom widget I needed the UI extension as well for dragging and dropping. What I did was download the latest jQuery UI version at:

https://jqueryui.com/download/all/

I added this file to a separate folder in my widget (/root/lib) and in the main javascript file of my widget I added the line dojo.require("root.lib.jquery-ui-min");

This worked for me.

answered