I have
<%= content_for(:scripts) do %>
<%= javascript_include_tag 'rating_ballot' %>
<%- end -%>
<%= form_for(rating_ballot, :remote => true, :html => { :class => 'rating_ballot' }) do |f| %>
<%= f.label("value_1", content_tag(:span, '1'), {:class=>"rating", :id=>"1"})
radio_button_tag("rating[value]", 1, current_user_rating == 1, :class => 'rating_button') %>
<%= f.label("value_2", content_tag(:span, '2'), {:class=>"rating", :id=>"2"})
radio_button_tag("rating[value]", 2, current_user_rating == 2, :class => 'rating_button') %>
<%= f.label("value_3", content_tag(:span, '3'), {:class=>"rating", :id=>"3"})
radio_button_tag("rating[value]", 3, current_user_rating == 3, :class => 'rating_button') %>
<%= f.label("value_4", content_tag(:span, '4'), {:class=>"rating", :id=>"4"})
radio_button_tag("rating[value]", 4, current_user_rating == 4, :class => 'rating_button') %>
<%= f.label("value_5", content_tag(:span, '5'), {:class=>"rating", :id=>"5"})
radio_button_tag("rating[value]", 5, current_user_rating == 5, :class => 'rating_button') %>
<%= hidden_field_tag("msg_id", msg.id) %>
<%= f.submit :Submit %>
<%- end -%>
In a partial _msgs_list.html.erb rendered in the view home/index.html.erb. I added :remote => true to the form and put a create.js.erb and an update.js.erb in the folder views/ratings. The contents of create and update are
$('table#rating').replaceWith("<%= escape_javascript(render :partial => 'home/rating') %>");
I render another inside views/home/_msgs_list.html.erb via <%= render :partial => "rating", :locals => { :msg => msg } %>
and the contents of the partial _rating.html.erb are
<table id="rating">
<thead>
<tr>
<th colspan="2">Photo Ratings</th>
</tr>
<tr>
<td>Average Rating</td>
<td><%= msg.average_rating %></td>
</tr>
<tr>
<td>Your Rating</td>
<td><%= current_user_rating %></td>
</tr>
</thead>
</table>
Why dont create.js.erb and update.js.erb work? Thanks
remote(probably calledrails.js)? If the form is submitting remotely, is the controller rendering the HTML versions of the templates (can see this in the log, or in Firebug/etc). If that's the case, perhaps you should specifyrespond_to :jsin your controller. – numbers1311407 Aug 20 '11 at 2:35