If you wish to have the search/filter box open when you start the grid so the user won't have to click on the magnifier button, then all you need to do is have this code on the head section of your view:
<script type="text/javascript">
$(document).ready(function() {
$('#quickSearchButton').trigger('click');
});
</script>
I hope this helps someone else.
Cheers.