Skip to main content

DataGridEditingBuilder<T>.EditRowKey(Object) Method

The key(s) of a row being edited. 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