Skip to main content

DataGridEditingTextsBuilder.UndeleteRow(String) Method

Specifies text for buttons that recover deleted rows. Applies only if allowDeleting is true and editing.mode is 'batch'. Mirrors the client-side undeleteRow option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DataGridEditingTextsBuilder UndeleteRow(
    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
            .UndeleteRow("Custom text")
        )
    )
)
See Also