Displaying 1 result from an estimated 1 matches for "details_text".
2007 Apr 27
1
Return which field/index a result hit was found in
...tle_list, :author_names]
def details_value_list
return self.details.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 B...