Displaying 1 result from an estimated 1 matches for "inv_group_details".
2011 Mar 23
0
Implementing auto complete for more than one field in Rails
...y 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>
<%end%>
The alignment of the view might be hay wire currently, but thats not my
immediate focus. Thus kindly, ignore the same.
I have an idea of what I need to do and I have been able to write some
code for the same in...