Skip to main content
All docs
V26.1
  • PivotGridControl.AllowFilterPanelNavigation Property

    Gets or sets whether users can move focus between PivotGridControl cells and the Filter Panel. This is a dependency property.

    Namespace: DevExpress.Xpf.PivotGrid

    Assembly: DevExpress.Xpf.PivotGrid.v26.1.dll

    Declaration

    public bool AllowFilterPanelNavigation { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to allow users to move focus between PivotGridControl cells and the Filter Panel; otherwise, false.

    Remarks

    The following code example enables the AllowFilterPanelNavigation property to allow users to navigate between PivotGridControl cells and the Filter Panel using shortcuts:

    <dxpg:PivotGridControl 
        AllowFilterPanelNavigation="True">
        <dxpg:PivotGridControl.Fields>
            <dxpg:PivotGridField FieldName="Country" Area="RowArea" AreaIndex="0"/>
            <dxpg:PivotGridField FieldName="Name" Area="RowArea" AreaIndex="1"/>
            ...
        </dxpg:PivotGridControl.Fields>
    </dxpg:PivotGridControl>
    

    Refer to the following help topic for more information: Filter Panel Keyboard Actions.

    See Also