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

IGrid.SelectDataItems(IEnumerable<Object>, Boolean) Method

Selects or deselects rows that correspond to the specified data items.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.1.dll

NuGet Package: DevExpress.Blazor

Declaration

void SelectDataItems(
    IEnumerable<object> dataItems,
    bool selected = true
)

Parameters

Name Type Description
dataItems IEnumerable<Object>

A collection of data items.

Optional Parameters

Name Type Default Description
selected Boolean True

true to select rows; false to deselect rows.

Remarks

Refer to the SelectDataItems method description for more information and an example.

See Also