DataGridNavigationMode Enum
Lists values that specify how users navigate grid data.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v21.2.dll
Declaration
public enum DataGridNavigationMode
Members
Name | Description |
---|---|
Paging
|
Users use a pager to navigate through data. |
VirtualScrolling
|
Users use the vertical scrollbar to navigate through data. When a user scrolls, the grid loads and renders data rows that become visible. |
ShowAllDataRows
|
All grid rows are displayed on one page. In this mode, the grid does not display the pager. |
Related API Members
The following properties accept/return DataGridNavigationMode values:
Remarks
Important
The Data Grid was moved to maintenance support mode. No new features/capabilities will be added to this component. We recommend that you migrate to the Grid component.
The DataGridNavigationMode enumeration values specify the grid’s navigation mode.
<DxDataGrid Data="@DataSource" DataNavigationMode="DataGridNavigationMode.VirtualScrolling" >
...
</DxDataGrid>
Note
Virtual scrolling mode requires that all rows have the same height.
In this mode, the pager is hidden and the Edit Form is shown in a pop-up window.