Ruby on Rails Wednesday, November 24, 2010

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 => :comments

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/

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment