searchlogic

Hey

The guys at the searchlogic google groups seem to be asleep -.-

They didnt' grant me permission to post yet.

But anyways, right now, I followed the searchlogic tutorial found here -http://www.binarylogic.com/2008/09/07/tutorial-pagination-ordering- and-searching-with-searchlogic/

however, in that tutorial, the results of the find displays all my items, before i even search for anything with searchlogic.

I want it so that only after a search is made, will i then want the results to get listed. Right now its listing all the results, even though I didn't search

(I know that's whats supposed to happen, but I want to hide the find results until i search)

does anyone know how? Thanks

Hey

The guys at the searchlogic google groups seem to be asleep -.-

They didnt’ grant me permission to post yet.

But anyways, right now, I followed the searchlogic tutorial found here

-[http://www.binarylogic.com/2008/09/07/tutorial-pagination-ordering-

and-searching-with-searchlogic/](http://www.binarylogic.com/2008/09/07/tutorial-pagination-ordering- and-searching-with-searchlogic/)

however, in that tutorial, the results of the find displays all my

items, before i even search for anything with searchlogic.

I want it so that only after a search is made, will i then want the

results to get listed. Right now its listing all the results, even

though I didn’t search

(I know that’s whats supposed to happen, but I want to hide the find

results until i search)

does anyone know how? Thanks

Where’s the exact code?

-Conrad

David Zhu wrote:

> The guys at the searchlogic google groups seem to be asleep -.-

> They didnt' grant me permission to post yet.

> But anyways, right now, I followed the searchlogic tutorial found here > -http://www.binarylogic.com/2008/09/07/tutorial-pagination-ordering- > and-searching-with-searchlogic/

> however, in that tutorial, the results of the find displays all my > items, before i even search for anything with searchlogic.

> I want it so that only after a search is made, will i then want the > results to get listed. Right now its listing all the results, even > though I didn't search

> (I know that's whats supposed to happen, but I want to hide the find > results until i search)

> does anyone know how? Thanks

Conrad wrote:

Where's the exact code?

here- this is the view

<% if @users_count > 0 %>     <%= @users_count %> users found

    <table border="1" cellpadding="5">         <tr>             <th><%= order_by_link :id %></th>             <th><%= order_by_link :user_group => :name %></th>             <th><%= order_by_link :first_name %></th>             <th><%= order_by_link :last_name %></th>             <th><%= order_by_link [:email, :first_name] %></th>         </tr>         <% @users.each do |user| %>             <tr>                 <td><%= user.id %></td>                 <td><%= user.user_group ? user.user_group.name : "-" %></td>                 <td><%= user.first_name %></td>                 <td><%= user.last_name %></td>                 <td><%= user.email %></td>             </tr>         <% end %>     </table>

So how do I make it so that the do loop that flips through users don't get displayed until I search something?

David Zhu wrote: > > The guys at the searchlogic google groups seem to be asleep -.-

> > They didnt' grant me permission to post yet.

> > But anyways, right now, I followed the searchlogic tutorial found here > > -http://www.binarylogic.com/2008/09/07/tutorial-pagination-ordering- > > and-searching-with-searchlogic/

> > however, in that tutorial, the results of the find displays all my > > items, before i even search for anything with searchlogic.

> > I want it so that only after a search is made, will i then want the > > results to get listed. Right now its listing all the results, even > > though I didn't search

> > (I know that's whats supposed to happen, but I want to hide the find > > results until i search)

> > does anyone know how? Thanks

Conrad wrote: > Where's the exact code?

here- this is the view

<% if @users_count > 0 %> <%= @users_count %> users found

&lt;table border=&quot;1&quot; cellpadding=&quot;5&quot;&gt;
    &lt;tr&gt;
        &lt;th&gt;&lt;%= order\_by\_link :id %&gt;&lt;/th&gt;
        &lt;th&gt;&lt;%= order\_by\_link :user\_group =&gt; :name %&gt;&lt;/th&gt;
        &lt;th&gt;&lt;%= order\_by\_link :first\_name %&gt;&lt;/th&gt;
        &lt;th&gt;&lt;%= order\_by\_link :last\_name %&gt;&lt;/th&gt;
        &lt;th&gt;&lt;%= order\_by\_link \[:email, :first\_name\] %&gt;&lt;/th&gt;
    &lt;/tr&gt;
    &lt;% @users\.each do |user| %&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;%= user\.id %&gt;&lt;/td&gt;
            &lt;td&gt;&lt;%= user\.user\_group ? user\.user\_group\.name : &quot;\-&quot;

%></td> <td><%= user.first_name %></td> <td><%= user.last_name %></td> <td><%= user.email %></td> </tr> <% end %> </table>

So how do I make it so that the do loop that flips through users don't get displayed until I search something?

No one knows?