Skip to main content

DataGridFilterRowBuilder.BetweenEndText(String) Method

Specifies a placeholder for the editor that specifies the end of a range when a user selects the 'between' filter operation. Mirrors the client-side betweenEndText option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DataGridFilterRowBuilder BetweenEndText(
    string value
)

Parameters

Name Type Description
value String

The option value.

Returns

Type Description
DataGridFilterRowBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().DataGrid()
    .FilterRow(row => row
        .BetweenEndText("My text")
    )
)
See Also