Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think you are using new version (your version > 2.3.0) of jquery-rails. </p> <p>jQuery UI has been removed from jquery-rails gem, </p> <ul> <li><code>≤ jquery-rails v2.3.0</code> still have jQuery UI </li> <li><code>≥ jquery-rails v3.0.0</code> jQuery UI removed</li> </ul> <p>Take a look <a href="https://github.com/rails/jquery-rails/commit/2fdcdb2633cbc6426d412c050200fc31d14b9a3b" rel="nofollow noreferrer">this commit</a>. </p> <p><strong>If you are using <code>≥ jquery-rails v3.0.0</code> or latest version of jquery-rails</strong></p> <p>You should use <code>jquery-ui-rails</code> gem for using jquery UI in rails, <a href="https://github.com/joliss/jquery-ui-rails" rel="nofollow noreferrer">https://github.com/joliss/jquery-ui-rails</a>.</p> <p>In your Gemfile, add:</p> <p><code>gem 'jquery-ui-rails'</code></p> <p>and run <code>bundle install</code></p> <ol> <li><p>v2.3.0 &lt; your version ≤ v4.2.1 </p> <p>And put this into <code>application.js</code></p> <pre><code>//= require jquery.ui.all </code></pre> <p>then put this into <code>application.css</code></p> <pre><code>*= require jquery.ui.all </code></pre></li> <li><p>≥ jquery-ui-rails v5.0.0 or latest version </p> <p>And put this into <code>application.js</code></p> <pre><code>//= require jquery-ui </code></pre> <p>then put this into <code>application.css</code></p> <pre><code>*= require jquery-ui </code></pre> <p>or to use specific modules <a href="https://github.com/joliss/jquery-ui-rails/tree/v5.0.0#require-specific-modules" rel="nofollow noreferrer">read this</a></p></li> </ol> <p>Don't forget restart your server.</p> <p><strong>If you are using <code>≤ jquery-rails v2.3.0</code></strong></p> <p>see my answer here <a href="https://stackoverflow.com/a/16996710/1297435">https://stackoverflow.com/a/16996710/1297435</a> for use <code>gem 'jquery-rails', "~&gt; 2.3.0"</code></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload