Hello, I have a BlogPost resources, where in BlogPost ''show'' screen, I want a "new comment" button to be displayed and only on clicking that button I want the new Comment view to be rendered into the same page. I would like to use ajax concept to do this. How do I do this? NOTE: I have BlogPost and Comment as seperate resources(plural) Resources I''ve defined in my routes looks like this: map.resources :blog_posts, :has_many => :comments -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Vineeth Pradhan wrote in post #963498:> Hello, > > I have a BlogPost resources, where in BlogPost ''show'' screen, I want a > "new comment" button to be displayed and only on clicking that button I > want the new Comment view to be rendered into the same page. I would > like to use ajax concept to do this. How do I do this? > > NOTE: I have BlogPost and Comment as seperate resources(plural) > Resources I''ve defined in my routes looks like this: > > map.resources :blog_posts, :has_many => :commentsHi, You can use JS for doing this easy instead of Ajax. <div id="comment" style="display:none;"> <text_box> </div> <a onclick="$(''comment'').show();">new comment</a> Regards, Srikanth http://srikanthjeeva.blogspot.com/ -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Srikanth Jeeva wrote in post #963500:> Hi, > > You can use JS for doing this easy instead of Ajax. > > <div id="comment" style="display:none;"> > <text_box> > </div> > > <a onclick="$(''comment'').show();">new comment</a> > > Regards, > Srikanth > http://srikanthjeeva.blogspot.com/Thanks for the suggestion. But what''s ''<text_box>''? did you mean to input ruby code to display a button there? Besides is there a way to include javascript inside ''link_to'' or ''link_to_remote'' tag? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.