Posted by johnflower on August 29, 2009 at 2:46am
3 followers
Jump to:
| Project: | Views Live Filters |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Submit button flashes briefly before this module hides it. It would be tidier if the submit button was prevented from being display in the first place, Purely a cosmetic bug.
Comments
#1
May have non-javascript issues if hiding it before unload, due to non javascript browsers needing to see the button.
#2
This can be fixed by simply using CSS to target the element and hiding it.
.views-exposed-widget #id-of-your-submit-button { display:none !important; }
The above code worked for me. You would need to get the ID of your submit button not mine but .views-exposed-widget should work across the board.