pungpoo / giix

Automatically exported from code.google.com/p/giix
0 stars 0 forks source link

Advanced search form hidden by default. #19

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The advanced search form should be hidden by default, simply because it is 
"advanced"  :)

Original issue reported on code.google.com by thiagota...@gmail.com on 2 Jun 2011 at 6:41

GoogleCodeExporter commented 8 years ago
My solution was to add between line 23 and 24 in 
giix-core/giixCrud/templates/default/admin.php : 
$(document).ready(function() {
        $('.search-form').toggle();
    return false;     
}); 

This is probably a hacky solution, but it works.

Original comment by winf...@gmail.com on 16 Jun 2011 at 2:12

GoogleCodeExporter commented 8 years ago
display:none is the best solution

Original comment by thiagota...@gmail.com on 16 Jun 2011 at 2:20

GoogleCodeExporter commented 8 years ago
Thanks.

Original comment by rodrigo.coelho@gmail.com on 5 Jul 2011 at 9:43