Skip to main content
All docs
V25.1
  • FilterFormItemBase.ApplyFilterModeProperty Field

    Identifies the ApplyFilterMode attached property.

    Namespace: DevExpress.Maui.Editors

    Assembly: DevExpress.Maui.Editors.dll

    NuGet Package: DevExpress.Maui.Editors

    Declaration

    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