Back to Devexpress

FilterFormItemBase.ApplyFilterModeProperty Field

maui-devexpress-dot-maui-dot-editors-dot-filterformitembase-5f0b7f4e.md

latest2.1 KB
Original Source

FilterFormItemBase.ApplyFilterModeProperty Field

Identifies the ApplyFilterMode attached property.

Namespace : DevExpress.Maui.Editors

Assembly : DevExpress.Maui.Editors.dll

NuGet Package : DevExpress.Maui.Editors

Declaration

csharp
public static readonly BindableProperty ApplyFilterModeProperty

Field Value

TypeDescription
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:

xaml
<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

FilterFormItemBase Class

FilterFormItemBase Members

DevExpress.Maui.Editors Namespace