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

DataGridSelectionBuilder.ShowCheckBoxesMode(GridSelectionShowCheckBoxesMode) Method

Mirrors the client-side showCheckBoxesMode option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DataGridSelectionBuilder ShowCheckBoxesMode(
    GridSelectionShowCheckBoxesMode value
)

Parameters

Name Type Description
value GridSelectionShowCheckBoxesMode

The option value.

Returns

Type Description
DataGridSelectionBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().DataGrid()
    .Selection(selection => selection
        .ShowCheckBoxesMode(GridSelectionShowCheckBoxesMode.Always)
    )
)
See Also