I'm using the Sexy exposed filters module (http://drupal.org/project/sexy_exposed) which replaces the exposed filter dropdown form element with a sexier one.
The module is very simple, it just sets its settings in an additional filter form submit callback with views_ui_cache_set($view). And it works fine , the settings get in the views_display table.
However, when I export the view, the settings do not appear in the exported code (neither by features nor by the views export link).
Since there are several exposed filter issues I think this is views related. It is easy to reproduce:
1. Create a view with a node reference exposed filter
2. Make the filter sexy on the filter form
3. Export the view using views' export link.
Result:
No 'sexy' settings in the exported code.
Comments
Comment #1
dawehnerWell only things which are defined in option_definition can be exported. So you would have to write exposed form plugin like better exposed filters.
Comment #3
czigor commentedThanks, dawehner. I made a patch for BEF. #1494204: Incorporate the sexy exposed module
Comment #4
boobaaLet's give this another try in a more proper queue.
Comment #5
zserno commentedThanks for pushing this. I just pushed a rewrite of SE as Views exposed form plugin. Please see 2.x branch in git. http://drupalcode.org/project/sexy_exposed.git/commit/6f82625
Comment #6
boobaa2.x branch looks great, though I have some comments.
.info'sfiles[]array that have classes. In this project, the only class is located in thesexy_exposed_exposed_form_plugin.incfile, so the other two entries simply don't make sense.Comment #7
zserno commented@boobaa: Thank you for your excellent remarks, sir. Libraries support is on the roadmap, will be included in the next release.
I think 2.x branch will be the main branch for 7.x.