Is it possible to write multiple checkbox values? When i click on submit, the first value "accounting_services" is written to the database, but all of the others are ignored. I created a column in my registration database table with a title of organizationservices, and type of string.
<td><%= f.check_box(:organizationservices, {:class => 'check_box'},"accounting_services","") %>Accounting/Auditing Services </td> <td><%= f.check_box(:organizationservices, {:class => 'check_box'},"Actuarial_Services","") %>Actuarial Services </td> <td><%= f.check_box(:organizationservices, {:class => 'check_box'},"com_dev","") %>Alternative/Comm. Dev. Investments </td> <td> <%= f.check_box(:organizationservices, {:class => 'check_box'},"test 1","not test 1") %>Test</td>
thank you, Jason