Simple module filters in advanced module

edited September 2016 in Bug Reports
Howdy!
I've got an advanced module with some simple modules and this modules have some filters like 'language', 'published' etc.
... 'filters' => array( 'language_equal' => array( 'default' => 'uk', 'label' => 'Язык:', 'type' => 'select', 'options' => array( 'uk' => 'Ukr', 'en' => 'Eng', ''=> 'All' ), ), 'published_equal' => array( 'default' => 'yes', 'type' => 'select', 'options' => array( 'yes' => 'Yes', 'no' => 'No', ), ), ), ...

I can see notification about initiated filters and it does filter these records but there is no options available in action panel,
if apply those filters to simple module which is located in app folder - everything work fine, problem occurs only with modules in advanced module.

FUEL_VERSION: 1.3.2

Comments

  • edited 2:48AM
    I'm not quite sure I follow. Do you have a screenshot or something to help visually explain it?
  • edited 2:48AM
    If I enable filters in simple module which is located in advanced module, there will be notification:


    but no select field to fire filter options:


    on the other hand, if enable this filters to simple module in app folder,
    (except notification) appears dropdown fields with filter options:
  • edited 2:48AM
    There is a down triangle in the search dialog that should show those filters. There are 3 different filter views you can use which can be set using the "advanced_search" property in the module's configuration:
    popover = shows dropdown arrow in search box
    collapse = shows collapsible area above list box
    no value = shows next to search box
  • edited 2:48AM
    Thanks for reply!
    I didn't noticed that triangle and after changing the value of "advanced_search" to false it worked!
Sign In or Register to comment.