Default state for search section
- Single Page
Posted 14 June 2012 - 19:28 PM
Posted 14 June 2012 - 20:39 PM
<script type="text/javascript">
$(document).ready(function() {
$('#quickSearchButton').trigger('click');
});
</script>
Cheers.
Posted 09 April 2013 - 22:45 PM
i make this for have the fix in all pages (the search tab will be open all time in all pages)
in the file flexigrid.js
cut this line $('#quickSearchBox').slideToggle('normal'); and paste before of the search button click function, this is the final code
$('#quickSearchBox').slideToggle('normal');
$('#quickSearchButton').click(function(){
// i move this line to top
});