Filter Editor
Filter Editor is one of the filtering modes of RadGridView, which allows you to create complex filter expressions. The visualization of the editor consists of a panel displaying an overview of the filtering criterias and a dialog with embedded RadDataFilter control that is used to add, remove and modify the filters.
Visual Structure
- Data Filter View—The panel displaying the applied filters and the related options.
- Apply Filters CheckBox—A CheckBox that enables/disables the selected filters in the associated RadGridView instances.
- Toggle Wrapping Button—A toggle button that enables/disables the wrapping of the filtering criterias.
-
Edit Filters Button—A button that opens a dialog that allows editing of the filters using a
RadDataFilter
control. - Close Button—A button that hides the Data Filter View panel.
- Filter Part—The parts of the field criterias, the associated operators and parenting.
- RadDataFilter—A data filter editor.
Enabling the Filter Editor
To show the Data Filter View panel, set the FilteringMode property of RadGridView
to FilterEditor
. Additional to that the following Telerik assemblies needs to be referenced in the project.
Telerik.Windows.Controls.Data.dll
Telerik.Windows.Controls.Navigation.dll
Enabling the filter editor
RadGridViewCommands.ToggleFilterEditor
command, or alternatively use the column headers context menu.
Filter Editor Position
The editor is positioned at the bottom of the data grid component, but this can be changed with the FilterEditorPosition
property of RadGridView
. The available positions are Top
and Bottom
(default).
Setting the filter editor position
Toggling the Filters
The filters can be enabled or disabled with the Apply Filters CheckBox. Deselecting the CheckBox will disable the filters and update the RadGridView's data view accordingly.
Enable/disable filters check box
Toggling the Filter Editor Panel Visibility
The panel can be hidden with the RadGridViewCommands.ToggleFilterEditor
command and the Close Button.
Executing the RadGridViewCommands.ToggleFilterEditor command
EnableHeaderContextMenu
property of RadGridView
to true
.
Enabling the column header context menu
Removing Filters on Panel Close
By default closing the panel (with the close button or the command), won't clear the applied filters. To change this behavior and clear the filters, set the ShouldRemoveFiltersOnClose
property of RadDataFilterView
to True
.
Setting the ShouldRemoveFiltersOnClose property
No Filters Content
The message displayed when no filters are applied can be customized with the EmptyFiltersContent
and EmptyFiltersContentTemplate
properties of RadDataFilterView
.
Setting the EmptyFiltersContent property
Setting the EmptyFiltersContentTemplate property
Commands
The filter editor feature provides the following set of commands that can be utilized.
-
RadGridViewCommands.ToggleFilterEditor
—Hides and shows the filter editor view. -
FilterEditorDialogCommands.SelectFilters
—Applies the selection in the filter editor dialog and closes it. -
FilterEditorDialogCommands.CancelFilters
—Cancels the selection in the filter editor dialog and closes it. -
FilterEditorDialogCommands.ApplyFilters
—Applies the selection in the filter editor dialog without closing it. -
RadDataFilterViewCommands.OpenFilterEditor
—Opens the filter editor dialog. -
RadDataFilterViewCommands.ToggleWrapping
—Toggles the filter criterias wrapping.
Events
The RadDataFilterView
control exposes several properties of type EventHandler
that can be used to assign handlers invoked when specific actions in the RadDataFilter
control occur.
The FilterOperatorsLoadingHandler
property allows to set a handler of type EventHandler<FilterOperatorsLoadingEventArgs>
that is invoked when the filter operators starts loading. This allows you to remove operators from the collection with the available operators.
The EditorCreatedHandler
property allows to set a handler of type EventHandler<EditorCreatedEventArgs>
that is invoked when the filter starts loading. This allows you to remove operators from the collection with the available operators.
The AutoGeneratingItemPropertyDefinitionHandler
property allows to set a handler of type EventHandler<DataFilterAutoGeneratingItemPropertyDefinitionEventArgs>
that is invoked when the filter operators starts loading. This allows you to remove operators from the collection with the available operators.
Assigning the handler objects in code behind
Defining a handler property in a view model
Assigning the handler object with data binding
Defining event handlers
Customizing Filter Editor Parts
The filter editor elements can be customized with several properties exposed by the RadDataFilterView
control.
To change the spacing between the filter criteria visuals, set the FilterPartsSpacing
property.
Setting the FilterPartsSpacing
To hide the close button, set the CloseButtonVisibility
property to Collapsed
.
Setting the CloseButtonVisibility
To change the layout behavior of the panel that displays the filtering criterias, change the IsWrappingEnabled
property. By default, when the criteria visuals go outside of the available width, they will get clipped. Setting IsWrappingEnabled
to true
will wrap the visuals and display them on multiple rows.
Enabling wrapping
The wrapping behavior can be enabled and disabled also with the Toggle Wrapping Button. When there is enough width to display all filtering criterias the button won't be displayed and the CanToggleWrapping
property of RadDataFilterView
will return false
.
To change the default size of the dialog with the RadDataFilter
control, set the FilterEditorWindowWidth
and FilterEditorWindowHeight
properties of RadDataFilterView
.
Setting the filter editor dialog size
Customizing Filtering Criteria Visuals
The filtering criteria visuals are represented by the FilterPart
element. To apply custom settings to this visual, an implicit style defined in the RadGridView.Resources
can be used.
To change the member and value backgrounds, set the MemberBackground
and ValueBackground
properties of FilterPart
.
Setting the backgrounds of the member and value filter parts
The FilterPart
can be further customized by setting its ContentTemplate
property.
Customizing the FilePart elements using the ContentTemplate
The data context in the ContentTemplate
is an object of type FilterPartViewModel
which contains the following information:
-
Type
—This is the type of part's content represented by theFilterPartType
enum. It can be aLogicalOperator
,Operator
,Member
,Value
,OpeningBracket
orClosingBracket
. -
Content
—This is the content that will be displayed in the content area. It can be an operator name (And, Or, StartsWith, Contains, etc.), member (property name), value or a opening/closing bracket.
The view model gives information also for the current level of the filtering part in the composite filter's hierarchy through the Level
property.
Customizing the Display Names of Properties
By default the data filer will use associated the property names in the dropdown that allows you to select a field. To change this and use a custom display name, either use the System.ComponentModel.DisplayName
attribute on the corresponding property in the model, or use the AutoGeneratingItemPropertyDefinitionHandler.