I may be looking at this all wrong but within my view (Using Active Admin) I would like to concatenate 3 attributes into one, so in my case, forename, middlename and surname into one string, with each part of the name separated by a space
So far i have come up with this
column "Name" do |member|
member.forename + member.middlename + member.surname
end
I also thought i could map the results
column "Name" do |member|
member.map {|m| m.forename, m.middlename, m.surname }
end
But that throws an error
So a helper would look something like this (as far as i can see it)
def fullname(member)
member.forename + member.middlename + member.surname
end
I think im confusing this somewhere along the line as i have 3 attributes I need to pass through the helper dont I?
Any help appreciated
Two things. First, why don't you put this on the member model. Second, you should use interpolation over concatenation.