maui-devexpress-dot-maui-dot-editors-dot-filterformitembase-5f0b7f4e.md
Identifies the ApplyFilterMode attached property.
Namespace : DevExpress.Maui.Editors
Assembly : DevExpress.Maui.Editors.dll
NuGet Package : DevExpress.Maui.Editors
public static readonly BindableProperty ApplyFilterModeProperty
| Type | Description |
|---|---|
| BindableProperty |
A bindable property identifier.
|
The ApplyFilterMode attached property allows you to specify the filter mode for an individual filter item or container that stores filter items.
The following example specifies the Manual filter mode for the container that stores multiple filter items. In Manual mode, you need to use the ApplyFilter() method or ApplyFilterCommand to apply all filters:
<ContentPage HideSoftInputOnTapped="True" dx:FilterFormItemBase.ApplyFilterMode="Manual">
<VerticalStackLayout>
<dx:FilterRadioListPickerItem
FieldName="City"
Text="Location" />
<dx:FilterChipGroupItem
FieldName="Status" />
<dx:FilterNumericRangeItem
FieldName="YearBuilt"
Text="Year Built" />
<dx:DXButton
Content="Apply filters"
Command="{Binding Source={Reference collectionView}, Path=FilteringContext.ApplyFilterCommand}" />
</VerticalStackLayout>
</ContentPage>
See Also