Devi Rv wrote:
> Hai,
> 
> I want to create a checkbox the values are table field values. In my
> controller
>   @emptypes = Emptypes.find(:all)
> In View
>   <% @emptypes.each do |c| %>
>   #Write checkbox generating code here
>     <%= check_box("contacts",emptypes.types)%>
>   <%end%>
>  Anyknows please suggest me how to create a checkbox (values are
> retrived from table).
> 
> -with Thanking&Regards
> devi.r

<% @emptypes = Emptypes.find(:all)%>
     <% @emptypes.each do |c| %>
    <%= check_box "contacts","xxxxx",{},emptypes.types %>
in the place of "xxxxx" you have to mention the method name
-- 
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 [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to