Displaying 1 result from an estimated 1 matches for "text_titl".
Did you mean:
text_title
2007 Apr 27
1
Return which field/index a result hit was found in
...ails.collect do |detail|
detail.value
end.join(",")
end
def details_title_list
return self.details.collect do |detail|
detail.title
end.join(",")
end
def details_text
return self.details.collect do |detail|
detail.text_title + detail.text_value
end.join(",")
end
def author_names
return self.authors.collect do |authors|
authors.name
end.join (",")
end
...
I can successfully search the Book model and all of its associations. Next,
I would like to print out...