in my view I have 3 exposed filters based on different vocabularies. My need is to use only one filter at a time, when a value is selected in one filter the two others have to be automatically reset (to "-any-"), I googled and I only found one similar question but the answer (expose reset button) doesn't really fit my need. I suspect there must be one simple solution to this common (I guess) requirement. I'm using BEF but no help from this side I fear. Thank you for helping ! EDIT : I put my three filters in a group using AND operator
Drupal views reset exposed filters values on change
1.4k Views Asked by duck At
1
There are 1 best solutions below
Related Questions in DRUPAL-7
- Drupal access control to custom user profile page
- How to list all child pages of current parent page in drupal 7?
- Drupal location module shows only a portion of Gmap on node page
- How to add a select collection type select list to field collection
- Drupal AngularJS ajax simple ng-repeat update
- PHPStorm Drush on Vagrant
- Drupal: Access A Field in hook_views_query_alter()
- Drupal domain access auto create content
- How to display sibling pages except current page in drupal 7?
- how to merge entity reference relationship field value
- Drupal print breaks when rendering a region
- Drupal 7 treating HTML div with data attribute as text
- All files and folders are not being listed in the imce file browser in Drupal 7
- drupal api returns json causes syntax error, malformed JSON in json_decode function of php
- Drupal module development, custom database tables, pages for managing those data
Related Questions in DRUPAL-VIEWS
- Drupal: Access A Field in hook_views_query_alter()
- How to display sibling pages except current page in drupal 7?
- View theme override in drupal 8
- Drupal - Edit Views Selective Filters module to rename the option tag
- How to create isotope filter in drupal 7?
- Drupal views reset exposed filters values on change
- Drupal theme Views template modifications
- drupal views difference between two dates
- Using content type URL Alias in Panels
- Edit node after submission on comparing already submitted data in node creation in Drupal 7
- Drupal 7.0 Views 7.x-3.14 Time-based cache is not functioning as expected
- Display unique node using views in drupal
- views result not showing to authenticated users
- Drupal 7: how to return a 404 page not found instead of a view
- Drupal 7 sum grouped fields
Related Questions in DRUPAL-TAXONOMY
- Drupal views reset exposed filters values on change
- Contextual Filters using Taxonomy Works in Preview but not on Page
- Drupal 8 entity query with multiple taxonomy terms
- Drupal 8: Taxonomy page limit exposed filter options based on parent term
- create sub vocabulary term for taxonomy
- Drupal 7 Views - Group By Content Type and Taxonomy Term
- Drupal 7: Get all content items attached to all terms in a vocabulary sorted by date
- Taxonomy and views
- how to display users when we search for a particular node in the exposed filter in views drupal 7
- Drupal 8 migrate taxonomy hierarchy
- Drupal Taxonomy
- Drupal Views - Multiple Vocabulary Arguments / Filter
- Drupal 7 - Insert taxonomy into node object
- Looking for a Drupal Module that will Redirect Pathauto urls when a node is deleted
- Drupal function to return content types associated with a term
Related Questions in DRUPAL-EXPOSED-FILTER
- Drupal views reset exposed filters values on change
- Drupal exposed filter not displaying as select/drop-down
- Drupal 7 contextual filter and exposed filter in calendar views
- Filtering among Exposed Filters: Parent/Child relationship between two Exposed Filter in Drupal View
- Theming exposed filter form drupal7
- Change default '-Any-' in Drupal 7 exposed views dropdown selector filter
- Relating two Drupal 7 views filters
- Remove or Filter Options on Exposed Filter in Drupal 7
- drupal 7 views block and contextual filter not working
- Drupal 7 - Rendering Exposed Form Elements as Icons via Custom Module, outputting string instead of html
- Remove empty options in exposed filters
- Drupal 7 Views with custom template exposed filters doesn't showing
- Dynamic exposed filters in Drupal 7
- jQuery events not working when views AJAX is enabled with exposed filter
- Views combine field expose filter with multiple taxonomy terms Drupal 8
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is not a common requirement but anyway.
If you really need that functionality you can do this using js (or jquery) so when changes a select option (assuming you are using select element) to reset the other 2 selects to the -Any- option.
Check this question change selects value onchange of another select based to the change() jquery function.