Displaying 1 result from an estimated 1 matches for "search_bar".
Did you mean:
search_arg
2006 Jul 02
2
searchbar help!
...groups that were chosen, along with the query that
was inputted in the search field, and find the corresponding ones, and
display them.
the searchbar looks like this:
<%= start_form_tag :action => ''search'' %>
<input type="text" name="search_bar" >
<% for group in @groups %>
<input type="checkbox" name="group_finder[<%= group.id %>]" >
# a checkbox for each group, to be chosen by the
searcher-guy
<% end %>
<%= submit_tag ''search'' %>
<...