Skip to main content
A newer version of this page is available. .

GridViewPagerState.UseVirtualSmoothVerticalScrolling Property

Gets or sets whether smooth vertical scrolling is enabled in the virtual paging mode.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public bool UseVirtualSmoothVerticalScrolling { get; set; }

Property Value

Type Description
Boolean

true, if smooth vertical scrolling is used in the virtual paging mode; otherwise, false.

Remarks

When the UseVirtualSmoothVerticalScrolling property is enabled, end-users can navigate through data row pages using the vertical scrollbar. When a scroll button is clicked, the GridView smoothly scrolls data.

Note

If the GridView’s ASPxGridViewSettings.VerticalScrollBarStyle property setting is not set to the GridViewVerticalScrollBarStyle.VirtualSmooth value in a View, enabling the UseVirtualSmoothVerticalScrolling property in a GridViewPagerState in a Controller forces the grid to work in the virtual mode with smooth vertical scrolling.

See Also