Displaying 2 results from an estimated 2 matches for "team_name".
Did you mean:
team_names
2007 Sep 07
4
Ferret DRB - can add/edit index, but can''t search
...s:243
/usr/bin/mongrel_rails:16
-----------------
When I''m adding/editing data in the index, my ferret_server.log file
shows the following:
#method_missing(:add, ["Article", {:synopsis=>"Analysis and
Projections", :status=>1, :player_names=>"", :team_names=>"",
:publisher=>"", :title=>"Article Title", :db_state=>0, :id=>1,
:article_published_date=>1189115220}])
#method_missing(:add, ["Article", {:synopsis=>"Analysis and
Projections", :status=>1, :player_names=>"",...
2006 Jul 11
0
text_field_with_auto_complete problem
hello all,
I am trying to get a customized text_field_with_auto_complete working
where the generated dropdown will display not only the list of teams
(first line), but also their city and country(second line).
In my view, I have:
<p>
<label for="team_name">Team: </label>
<%= text_field_with_auto_complete :team, :name, {}, :skip_style => true
%>
</p>
In controller:
def auto_complete_for_team_name
unless request.get?
search = ''%'' + params[:team][:name].downcase + ''%''
@teams = T...