Displaying 1 result from an estimated 1 matches for "inv_group".
Did you mean:
in_group
2011 Mar 23
0
Implementing auto complete for more than one field in Rails
...:investor_group, :collection =>
{:auto_complete_for_investor_groups_title => :get }
I am able to currently display an image for a particular group and
retrieve the total number of members belonging to a group by making use
of the following code in **index.html.erb** of groups:-
<%for inv_group in @investor_groups%>
<div class="inv_group_img" align="center"><%=image_tag
"investor_groups/#{inv_group.title}.jpg"%></div>
<div class="inv_group_details">
<%=inv_group.activated_members.size%><br>
&l...