Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FilterFormItemBase.ApplyFilterModeProperty Field

Identifies the ApplyFilterMode attached property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

#Declaration

C#
public static readonly BindableProperty ApplyFilterModeProperty

#Field Value

Type Description
BindableProperty

A bindable property identifier.

#Remarks

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