Active
Project:
Views Live Filters
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Aug 2009 at 02:46 UTC
Updated:
7 Dec 2010 at 23:55 UTC
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
Comment #1
hefox commentedMay have non-javascript issues if hiding it before unload, due to non javascript browsers needing to see the button.
Comment #2
jsheffers commentedThis 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.