TreeListEditingTextsBuilder.EditRow(String) Method
In This Article
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
C#
public TreeListEditingTextsBuilder EditRow(
string value
)
#Parameters
Name | Type | Description |
---|---|---|
value | String | The option value. |
#Returns
Type | Description |
---|---|
Tree |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().TreeList()
.Editing(editing => editing
.Texts(texts => texts
.EditRow("Custom text")
)
)
)
See Also