DataGridNavigationMode Enum
Lists values that specify how users navigate grid data.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v20.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
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.