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