It's been a while since I have done anything with Rails and now I'm using rails 4. Also I'm taking a look at active admin. Looking for a little assistance to get me on my way.
I have two models:
class Membership < ActiveRecord::Base
belongs_to :member
attr_accessible :membership_type
end
class Member < ActiveRecord::Base
has_many :memberships
accepts_nested_attributes_for :memberships
attr_accessible :forename, :middlename, :surname, :house_no, :house_name, :street, :town, :postcode, :home_tel, :mobile_tel, :work_tel, :email, :membership_attributes
end
The idea her is that when creating a new member you should be able to select a membership type form a drop down (there are 3 options)
My active admin resource look like this at the moment but I need to incorporate the new membership type:
ActiveAdmin.register Member do
# Set Which Columns are to be displayed on the index page
index do
column :forename
column :middlename
column :surname
column :house_no
column :house_name
column :street
column :town
column :postcode
column :home_tel
column :mobile_tel
column :work_tel
column :email
default_actions
end
# Set Which Columns are to be displayed on Create New Member
form do |f|
f.inputs "Member Registration" do
f.input :forename
f.input :middlename
f.input :surname
f.input :house_no
f.input :house_name
f.input :street
f.input :town
f.input :postcode
f.input :home_tel
f.input :mobile_tel
f.input :work_tel
f.input :email
f.input :memberships, :label => 'Membership Type', :as => :select, :collection => Membership.all
end
end
So my memberships select box appears in the form but is showing as:
#<Membership:123456>
How do I get it to show the actual value?
Also slightly off the question topic but with rails 4 I no longer have to use attr_accessible
do I, but for now I've included the gem 'protected_attributes'. Any pointers on this would be appreciated.
Hey Looks every thing fine, there is small typo in attr_accessible:
if possible put it at first place,
To allow the nesting and the updating of has_many associations you must add the following to the model that they belong to :
Add an attr_accessible for the nested attribute to allow for mass assignment.
Add the obvious has_many association with the option to destroy the related has_many associations if the belongs_to model is destroyed.
Add the accepts_nested_attributes to allow a single request to update the has_many model/s and the belongs_to model with the option to destroy the has_many model if requested.