I have a posts_controller which displays all available posts. Each post has a link_to with :request => true which allows a user to recommend a given post to other users.
When a user clicks the link, a modal appears (via AJAX) which renders the recommendation index page. The index page inside the modal consists of a search field. When a user enter the name of the user they want to share the post with, and hit the submit button, I'd like for the modal to update with the returned search results. Instead, at present, the page re-routes to post_recommendations_url (../posts/id/recommendations?search_criteria).
I'd like for the search results to update within the modal, and not redirect to the post_recommendations_url. Is there a way to make this happen?
Here is what my controllers and views look like:
Index.html.haml (located in the users/posts folder)
%li
= link_to 'Recommend post', post_recommendations_path(post), :remote => true, "data-toggle" => "modal"
#my-modal.modal.hide
.modal-header
%a.close{"data-dismiss" => "modal"} ×
%h6
%i.icon-share.icon-large
Recommend Project
.modal-body
#modal-rec-body
%p
*recommendations_controller.rb*
def index
@user = Search.find_user(params[:name], current_profile)
respond_to do |format|
format.html
format.js
end
end
index.js.haml (located in recommendations folder)
:plain
$("#modal-rec-body").html("#{escape_javascript(render('recommendations/recommendation'))}");
$('#my-modal').modal({
keyboard: true,
show: true
});
*_recommendation partial (located in recommendations folder)*
.row-fluid{:style => "background:#ffffff; margin-left:0px"}
.span12
= form_tag post_recommendations_path, :method => "get" do
= text_field_tag :name, '', :class => "span12", :placeholder => "Please enter the name of the user you would like to share this post with.", :style => "max-width:520px;"
%center
= submit_tag "Search", :class => "btn btn-primary", :remote => "true"
- @user.each do |i|
- unless current_profile == i
.row-fluid
.span6
.row-fluid
.well{:style => "margin-left:0px;"}
.row-fluid
.span2
=image_tag i.avatar(:bio), :class=> "sidebar_avatar"
.span4
- form_for :recommendation do |r|
= r.hidden_field :friend_id, :value => i.account.id
= r.submit "Send Recommendation", :class => "btn btn-primary"