When I ask ActiveScaffold to show me a very long list (for example the list of products sold), it runs the database query to get the first page of data and it displays it. If the list has a few relations, this query might take some time to execute (over a second). Most of the time, I'm not interested in this "unfiltered" list: the first thing I want to do is click on "search" and filter down this list.
Is there any way I could tell ActiveScaffold not to display the unfiltered list when the list action is called? I would like it to simply display the search form, wait for some criteria to be entered, and only then display the filtered list.