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?

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to