Hi:
I have a radio_button_tag I'd like to catch the "onclick" action for as you would in HTML. When this happens, there is a simple DIV tag that I want to appear (probably through my RJS and "form_remote_tag". I'm a bit of a newbie and getting lost in this. here's what I have:
from view: <% form_remote_tag :url => { :action => :goaltype } do %> <%= radio_button_tag "one-time", "one-time goal", checked = false %> <% end %>
RJS: page.replace_html("onetime" , :partial => "g_onetime")
Partial to appear when radio button is clicked is just another form :
My controller method "goaltype" is empty because there's nothing I really need to do, or do I?
Thanks so much in advance for your help!
Mike