I have a link in an rhtml template: <%= link_to_remote "Edit", :url => {:action => :toggle_edit_campaign} %> that executes an action to toggle a page element (edit_campaign): def toggle_edit_campaign render :update do |page| page.toggle :edit_campaign end end Toggling works, but the edit_campaign element is visible by default when the page loads. I would like it to be hidden by default, and then toggle show, hide, show, hide, etc. when the above link_to_remote is clicked. How does one do this (make the element hidden by default, and toggle to visible on the first click)? Thanks. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Set style=''display:none'' on the element as an attribute. On Jan 9, 2008 4:13 PM, athem <allan.m.miller-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > I have a link in an rhtml template: > > <%= link_to_remote "Edit", :url => {:action => :toggle_edit_campaign} > %> > > that executes an action to toggle a page element (edit_campaign): > > def toggle_edit_campaign > render :update do |page| > page.toggle :edit_campaign > end > end > > Toggling works, but the edit_campaign element is visible by default > when the page loads. I would like it to be hidden by default, and > then toggle show, hide, show, hide, etc. when the above link_to_remote > is clicked. How does one do this (make the element hidden by default, > and toggle to visible on the first click)? > > Thanks. > > >-- Ryan Bigg http://www.frozenplague.net Feel free to add me to MSN and/or GTalk as this email. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi, If :edit_campaign is a div you do: <div style=''display:none;''>content</div> Cheers -- 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Jan 8, 10:17 pm, Peter Dierx <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Hi, > > If :edit_campaign is a div you do: > <div style=''display:none;''>content</div> > > Cheers > > -- > Posted viahttp://www.ruby-forum.com/.Worked like a charm. For anyone trying to hide a toggling div, that''s the solution. Thanks very much. Here''s how the div looks: <div id="edit_campaign" style="border: solid 1px #999; background- color:#fff; padding:4px;display:none;"> --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---