Skip to main content

TableView.ShowDataNavigator Property

Gets or sets whether to show the data navigator. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public bool ShowDataNavigator { get; set; }

Property Value

Type Description
Boolean

true, to show the data navigator; otherwise, false.

Remarks

The embedded Data Navigator allows users to add and remove rows. Refer to the following help topic for more information: Add and Remove Rows.

To show the Data Navigator, set the ShowDataNavigator property to true.

wpf-grid-data-navigator

To add a new row, a user should click the Data Navigator‘s Append (+) button.

To remove a row, a user should focus the row and click the Data Navigator‘s Delete (-) button.

Tip

Use the DataViewBase.DataNavigatorButtons property to specify which buttons to display in the Data Navigator.

Refer to the following help topic for information on how to display grid data across multiple pages: Data Paging.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowDataNavigator property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also