Skip to main content

DataGridEditingTextsBuilder.EditRow(String) Method

Specifies text for buttons that switch rows into the editing state. Applies only if allowUpdating is true. Mirrors the client-side editRow option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DataGridEditingTextsBuilder EditRow(
    string value
)

Parameters

Name Type Description
value String

The option value.

Returns

Type Description
DataGridEditingTextsBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().DataGrid()
    .Editing(editing => editing
        .Texts(texts => texts
            .EditRow("Custom text")
        )
    )
)
See Also