Enumeration: FilterWidgetMode
Defines visibility behavior modes for filter widgets.
This enum specifies how filter widgets behave in terms of their expandability and persistent visibility, affecting how users interact with filtering controls.
Enumeration Members
ALWAYS_VISIBLE
ALWAYS_VISIBLE:
"ALWAYS_VISIBLE"
Filter widget is permanently visible and cannot be collapsed.
In ALWAYS_VISIBLE mode, filter controls remain expanded at all times, ensuring filtering options are consistently accessible without requiring any expansion interaction from the user.
This mode is ideal for interfaces where filtering is a primary and frequently used function, and where immediate visibility of filter options takes precedence over space conservation.
EXPANDABLE
EXPANDABLE:
"EXPANDABLE"
Filter widget can be expanded and collapsed by the user.
In EXPANDABLE mode, the filter widget can be toggled between expanded and collapsed states through user interaction. This allows users to manage screen space by hiding filters when not in active use, while maintaining easy access when needed.
This mode is ideal for interfaces where filters are important but not constantly used, or where screen real estate needs to be balanced among multiple interface elements.