Skip to main content
All docs
V21.1

DataChangeBuilder.Index(Int32) Method

Mirrors the client-side index option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DataChangeBuilder Index(
    int value
)

Parameters

Name Type Description
value Int32

The option value.

Returns

Type Description
DataChangeBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option value:

@(Html.DevExtreme().DataGrid()
    .Editing(editing => editing
        .Changes(change => {
            change.Add().Index(1);
        })
    )
)
See Also