Skip to main content

MVCxGridView.GetChildRow(Int32, Int32) Method

Returns a data row contained in the specified group.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public override object GetChildRow(
    int groupRowVisibleIndex,
    int childIndex
)

Parameters

Name Type Description
groupRowVisibleIndex Int32

An integer value that identifies a group row by its visible index.

childIndex Int32

An integer value that identifies a data row in the group by its index.

Returns

Type Description
Object

An object that represents the specified row contained in the specified group.

Remarks

The GetChildRow method allows you to obtain a data row contained in the specified group row. The group row is identified by its visible index. A data row is obtained by its index in the group. To obtain the number of data rows contained in the specified group, use the MVCxGridView.GetChildRowCount method.

See Also