You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* <li>.id - (String) Optional unique Id for the filter field, useful for comparisons
7353
7353
* <li>.title - (String) The title to display for the filter field
7354
7354
* <li>.placeholder - (String) Text to display when no filter value has been entered
7355
-
* <li>.filterType - (String) The filter input field type (any html input type, or 'select' for a single select box)
7356
-
* <li>.filterValues - (Array) List of valid select values used when filterType is 'select'
7355
+
* <li>.filterMultiselect - (Boolean) In `complex-select`, allow selection of multiple values per category. Optional, default is `false`
7356
+
* <li>.filterType - (String) The filter input field type (any html input type, or 'select' for a single select box or 'complex-select' for a category select box)
7357
+
* <li>.filterValues - (Array) List of valid select values used when filterType is 'select' or 'complex-select' (in where these values serve as case insensitve keys for .filterCategories objects)
7358
+
* <li>.filterCategories - (Array of (Objects)) For 'complex-select' only, array of objects whoes keys (case insensitive) match the .filterValues, these objects include each of the filter fields above (sans .placeholder)
7359
+
* <li>.filterCategoriesPlaceholder - (String) Text to display in `complex-select` category value select when no filter value has been entered, Optional
7360
+
* <li>.filterDelimiter - (String) Delimiter separating 'complex-select' category and value. Optional, default is a space, ' '
7357
7361
* </ul>
7358
7362
* <li>.appliedFilters - (Array) List of the currently applied filters
7359
7363
* <li>.resultsCount - (int) The number of results returned after the current applied filters have been applied
* <li>.id - (String) Optional unique Id for the filter field, useful for comparisons
7670
7717
* <li>.title - (String) The title to display for the filter field
7671
7718
* <li>.placeholder - (String) Text to display when no filter value has been entered
7672
-
* <li>.filterType - (String) The filter input field type (any html input type, or 'select' for a select box)
7673
-
* <li>.filterValues - (Array) List of valid select values used when filterType is 'select'
7719
+
* <li>.filterMultiselect - (Boolean) In `complex-select`, allow selection of multiple values per category. Optional, default is `false`
7720
+
* <li>.filterType - (String) The filter input field type (any html input type, or 'select' for a single select box or 'complex-select' for a category select box)
7721
+
* <li>.filterValues - (Array) List of valid select values used when filterType is 'select' or 'complex-select' (in where these values serve as case insensitve keys for .filterCategories objects)
7722
+
* <li>.filterCategories - (Array of (Objects)) For 'complex-select' only, array of objects whoes keys (case insensitive) match the .filterValues, these objects include each of the filter fields above (sans .placeholder)
7723
+
* <li>.filterCategoriesPlaceholder - (String) Text to display in `complex-select` category value select when no filter value has been entered, Optional
7724
+
* <li>.filterDelimiter - (String) Delimiter separating 'complex-select' category and value. Optional, default is a space, ' '
7674
7725
* </ul>
7675
7726
* <li>.appliedFilters - (Array) List of the currently applied filters
0 commit comments