search for: _live

Displaying 1 result from an estimated 1 matches for "_live".

Did you mean: live
2007 Jan 25
2
text_field_with_auto_complete problem
...</table> In the controller I have: def place end def auto_complete_for_institution_names search = params[:institution][:names] breakpoint @institutions = Institution.search(search) unless search.blank? render :partial => "live/search" end Then I have a partial called “_live.rhtml”, which contains: <ul class="autocomplete_list"> <% for institution in @institutions.to_a -%> <li class="autocomplete_item"><%= institution_link institution.name, institution %></li> <% end -%> </ul> -- Posted via http:/...