Skip to Main Content
Learning Rails
book

Learning Rails

by Simon St. Laurent, Edd Dumbill
November 2008
Beginner content levelBeginner
448 pages
12h 25m
English
O'Reilly Media, Inc.
Content preview from Learning Rails

Managing Enrollment through Ajax

The students and courses forms included one slightly complicated form, back in Example 9-4 and Figures 9-17 and 9-18, for adding students to courses and removing them from courses if necessary. It combined showing the list with letting the user change data, and so makes a good candidate for demonstrating Ajax at work. (Code for the demonstration is available in ch16/students009.)

Making the Form More Scriptable

As a first step, before actually adding Ajax components, it’s a good idea to open up the form a bit so that more components are accessible to JavaScript through id attribute values and so users can see more of what’s happening at any given time.

Example 16-1 shows the revised courses.html.erb file, with some key changes highlighted. The entire section for adding courses is changed to mirror the section for removing courses, simplifying and manipulating both sections from JavaScript.

Example 16-1. A courses.html.erb file getting ready for some Ajax manipulation

<h1><%= @student.name %>'s courses</h1>

<% if @courses.length > 0 %>
  <% form_tag(course_remove_student_path(@student)), :html => {:id =>
'removal_form'} do %>
  <table id="CoursesEnrolled">
    <tr>
      <th>Course</th>
      <th>Remove?</th>
    </tr>
  <% for course in @courses do %>
    <tr id = "<%= "dom_id(course)" %>"> <td><%=h course.name %></td> <td><%= check_box_tag "courses[]", course.id %></td> </tr> <% end %> </table> <br /> <%= submit_tag "Remove checked courses" %> <% end %> <% else %> <p>Not enrolled ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Rails 5

Learning Rails 5

J. Mark Locklear, Eric J Gruber, Barnabas Bulpett
Mastering Ruby Closures

Mastering Ruby Closures

Benjamin Tan Wei Hao
Ruby on Rails® Bible

Ruby on Rails® Bible

Timothy Fisher

Publisher Resources

ISBN: 9780596154943Supplemental ContentErrata