Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4572168
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T19:36:29+00:00 2026-05-21T19:36:29+00:00

Trying to build some modal windows to show the crud in a nicer interface.

  • 0

Trying to build some modal windows to show the crud in a nicer interface. Would preferably want to do this using Jquery as intend to use jquery-ui in other parts of the app.

I have divs in my app layout

<div id="modal-container"></div>
<div id="modal">
  <a href="#" class="close">close</a>
</div>

which then are called upon with Ajax

$(function(){
  var $modal = $('#modal'),
      $modal_close = $modal.find('.close'),
      $modal_container = $('#modal-container');

  $('a[data-remote]').live('ajax:beforeSend', function(e, xhr, settings){
    xhr.setRequestHeader('accept', '*/*;q=0.5, text/html, ' + settings.accepts.html);
  });

  $('a[data-remote]').live('ajax:success', function(xhr, data, status){
    $modal
      .html(data)
      .prepend($modal_close)
      .css('top', $(window).scrollTop() + 40)
      .show();
    $modal_container.show();
  });

  $('.close', '#modal').live('click', function(){
    $modal_container.hide();
    $modal.hide();
    return false;
  });
});

Now, there is some styling as well etc, however, well… it just doesn’t look top-notch. I was hoping to use lightbox or facebox or some other of those plugins which look really cool, but haven’t been able to so far due to lack of tutorials online.

Can someone please help on the implementation into Rails 3 of these?

Thanks a lot!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T19:36:30+00:00Added an answer on May 21, 2026 at 7:36 pm

    Let’s try to sum up how you organized the whole thing.

    Did you put jquery and plugins files in the folder: /public/javascripts ?

    In your main layout file (/app/views/layout) do you load the scripts?

    <%= javascript_include_tag 'jquery-1.4.4.min' %>
    <%= javascript_include_tag 'rails' %>
    <%= javascript_include_tag 'jquery-ui-1.8.7.custom.min' %>
    <%= javascript_include_tag 'application' %>
    

    You should get rid of all the other javascripts including prototype.

    You don’t necessarily need the file application.js for testing purposes. You can just put your ajax code in the HEAD section of your view.

    This ajax code should be wrapped around $(document).ready() like this:

    <script type="text/javascript">
        $(document).ready(function() {
            $('.delete_phone').bind('ajax:success', function() {  
                $(this).closest('tr').fadeOut();  
            });
        });
    </script>
    

    In a list of telephone numbers (inside an HTML table), this code deletes 1 row when you click on a corresponding delete link like this one:

    <%= link_to image_tag("editdelete.png", :size => "16x16", "Delete Phone"),
        { :controller => 'phone_controller',
            :action => 'destroy_phone',
            :id => phone },
            :method => :delete, :confirm => "Are you sure?",
            :remote => true, :class=>'delete_phone'
    %>
    

    Does organizing your code like this changes something?


    EDIT:

    You should change a few things in the phone_controller file:

      def destroy_phone
          @phone = Phone.find(params[:id])
          @phone.destroy
          respond_to do |format|
              format.js   { render :nothing => true }
          end
      end
    

    Note the respond_to code. It tells rails that this is a javascript action and that the controller shouldn’t render anything other than js.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to build some sort of a javascript antivirus that would try
I'm trying to build some HTML with Knockout that Jquery UI can turn into
I'm trying build my application using REST and Spring MVC. For some entities I
I'm trying to build some .ascx controls into a class library for plugins for
At the moment I'm trying to build some integration tests for an android project.
I am starting to I am learning scala, and trying to build some simple
To build some simple analytics for our site - I am trying to capture
I'm trying to build and run some of the example apps included in the
I'm trying build an App Engine connected Android application and am having some problems
Hi I'm trying to build a layout where some shapes will popup every 2

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.