Skip to main content
Tab

ASPxVerticalGridSettings.RowLoadingMode Property

Gets or sets the loading mode of child rows of category rows or parent rows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

[DefaultValue(VerticalGridRowLoadingMode.Full)]
public VerticalGridRowLoadingMode RowLoadingMode { get; set; }

#Property Value

Type Default Description
VerticalGridRowLoadingMode Full

A VerticalGridRowLoadingMode enumeration value that specifies the loading mode for child rows.

Available values:

Name Description
Full

Child rows are loaded just after a web page has been loaded.

Callback

Child rows are loaded on a callback when the category row or parent row is being expanded.

#Property Paths

You can access this nested property as listed below:

Library Object Type Path to RowLoadingMode
ASP.NET MVC Extensions VerticalGridSettings
.Settings .RowLoadingMode
ASP.NET Web Forms Controls ASPxVerticalGrid
.Settings .RowLoadingMode

#Remarks

When the RowLoadingMode property is set to Full, child rows of category rows or parent rows are loaded just after a web page has been loaded. Otherwise, child rows will be loaded on a callback when the category row or parent row is being expanded for the first time.

Note

The RowLoadingMode property is not in effect if the VerticalGridRow.Fixed or/and the VerticalGridHierarchicalRow.Expanded properties for the category row or parent row are set to true.

For more information, see the demo : Vertical Grid - Categories

See Also