I have added //=require jquery-ui to my application.js file and that seems to give me the javascript but I can't seem to get the stylesheets to be included. If I understand it right they should go in vendor/stylesheets but how do I get them to be included?
|
|
|||||||
|
|
You can use google CDN, to add the css theme inside the head section of your app. Simply add this application.html.haml under the %head section(or the same thing translated to erb). The css theme
If you want the jquery-ui minified.
|
|||||||||||
|
|
if you include 'jquery-rails' in Gemfile jquery-ui will be included requiring this in application.js: //= require jquery-ui.min if you run in Console:
See the last line ? if you check in there you will find jquery-ui so there you go. |
||||
|
|
quote from the jquery-rails manual:
So, you have to include or style them yourself! Just include the theme's |
|||
|
|
|
Perhaps it's easier to use the jquery-ui-rails gem (see announcement). It packages everything up so things "just work". |
|||
|
|
|
If you have jquery-rails on Gemfile, just do:
or
both will work fine. If not, try to update jquery-rails gem Don't forget the css files, here I followed some articles on that other answer: Rails 3.1 and Jquery UI images and got it working by this way:
this is the path for files:
|
||||
|
|
|
denysonique has the answer in this question as pointed out by epochwolf in the comments. |
|||
|
|