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

DataGridEditingBuilder<T>.EditRowKey(Object) Method

Mirrors the client-side editRowKey option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DataGridEditingBuilder<T> EditRowKey(
    object value
)

Parameters

Name Type Description
value Object

The option value.

Returns

Type Description
DataGridEditingBuilder<T>

A reference to this instance after the method is called.

Remarks

Run Demo: ASP.NET Core Data Grid: Edit State Management

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

@(Html.DevExtreme().DataGrid()
    .Editing(editing => editing
        .EditRowKey(null)
    )
)
See Also