Hello I''m trying to search for active and non active users. These radio buttons work just fine except that it didn''t reselect itself after the form has been submitted. So, what should I do to ensure it will be selected just like how my text field populated automatically after the form has been submitted? = search_form_for @q do |f| = f.radio_button :is_active_false, 1 = f.radio_button :is_active_true, 1 Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/LKxcEyGf-2MJ. 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.
Lucca Mordente
2012-Aug-16 16:15 UTC
Re: Use Ransack with radio buttons for boolean values
Hi Amree, Try something like this: = f.radio_button :is_active_false, 1, :checked => @search.is_active_false = f.radio_button :is_active_true , 1, :checked => @search.is_active_true Let me know if this works for you. Also, aren''t you able to check both buttons at the same time, given that the have different name attribute from each other? Em domingo, 20 de novembro de 2011 07h42min39s UTC-2, Amree escreveu:> > Hello > > I''m trying to search for active and non active users. These radio buttons > work just fine except that it didn''t reselect itself after the form has > been submitted. So, what should I do to ensure it will be selected just > like how my text field populated automatically after the form has been > submitted? > > = search_form_for @q do |f| > = f.radio_button :is_active_false, 1 > = f.radio_button :is_active_true, 1 > > Thanks in advance. >-- 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 To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/V7Y2J75VOfwJ. For more options, visit https://groups.google.com/groups/opt_out.
Lucca Mordente
2012-Aug-20 18:49 UTC
Re: Re: Use Ransack with radio buttons for boolean values
Amree, have you tried the :checked option? That was the only solution for me. If anyone have any better solution, please post here. Lucca Mordente On Thu, Aug 16, 2012 at 1:15 PM, Lucca Mordente <luccamordente-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> Hi Amree, > > Try something like this: > > = f.radio_button :is_active_false, 1, :checked => @search.is_active_false > = f.radio_button :is_active_true , 1, :checked => @search.is_active_true > > Let me know if this works for you. > > Also, aren''t you able to check both buttons at the same time, given that > the have different name attribute from each other? > > > > Em domingo, 20 de novembro de 2011 07h42min39s UTC-2, Amree escreveu: >> >> Hello >> >> I''m trying to search for active and non active users. These radio buttons >> work just fine except that it didn''t reselect itself after the form has >> been submitted. So, what should I do to ensure it will be selected just >> like how my text field populated automatically after the form has been >> submitted? >> >> = search_form_for @q do |f| >> = f.radio_button :is_active_false, 1 >> = f.radio_button :is_active_true, 1 >> >> Thanks in advance. >> > -- > 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 > To view this discussion on the web visit > https://groups.google.com/d/msg/rubyonrails-talk/-/V7Y2J75VOfwJ. > For more options, visit https://groups.google.com/groups/opt_out. > > >-- 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 https://groups.google.com/groups/opt_out.
I use a drop down box as then I can select true, false or don''t care (blank). = f.select :my_bool_field_eq, options_for_select([false, true]), include_blank: true -- 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 https://groups.google.com/groups/opt_out.