address_picker-rails
address_picker-rails copied to clipboard
jquery-ui bad requirement
hi there I have a problem I'm using rails 3.2.13 and I'm getting this error
couldn't find file 'jquery-ui'
but I had the gem jquery-rails installed
thanks
Hi,
- Have you added the
jquery-ui-themes
gem to your Gemfile ? - And to your CSS manifest application.css:
*= require jquery-ui/<theme_name>
?
if you did :
- Where do you get this message : client side or server side ?
- What is in your
application.js
? - What is in your
application.css
?
I'm hitting this issue too. I haven't spent much time on it yet, but here is my setup:
In my Gemfile:
gem 'address_picker-rails'
gem 'jquery-ui-rails'
gem 'jquery-ui-themes'
In my css manifest:
*= require_self
*= require jquery.ui.all
*= require jquery-ui/cupertino
*= require_tree .
In js manifest:
//= require jquery
//= require jquery_ujs
//= require jquery.ui.all
//= require twitter/bootstrap
//= require address_picker-rails
//= require_tree .
My error:
couldn't find file 'jquery-ui'
(in /Users/adamphillabaum/.rvm/gems/ruby-1.9.3-p194/gems/address_picker-rails-0.3.0/vendor/assets/javascripts/address_picker-rails.js:3)
I'll let you know what I find out.