Displaying 1 result from an estimated 1 matches for "search_streams".
2008 May 29
5
f.checkbox?
...9;'ve
only used checkboxes with a database before, and I don''t want to use
columns in a database for this.
This is my setup so far:
in search view:
[code=]<% form_for :event do |f| %>
<label for="stream_search">Search Streams</label> <%= f.check_box
:search_streams, {:class=> "check"} %><br />
<label for="aud_search">Search Audiences</label> <%= f.check_box
:search_auds, {:class=> "check"} %> <br />
<% end %>[/code]
and I want to be able to somehow get these methods in the event mo...