DataGridColumnBuilder<T>.CalculateDisplayValue(String) Method
In This Article
Calculates custom display values for column cells. Requires specifying the dataField or calculateCellValue property. Used in lookup optimization. Mirrors the client-side calculateDisplayValue option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DataGridColumnBuilder<T> CalculateDisplayValue(
string value
)
#Parameters
Name | Type | Description |
---|---|---|
value | String | The option value. |
#Returns
Type | Description |
---|---|
Data |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().DataGrid()
.Columns(columns => {
columns.Add().CalculateDisplayValue("My value");
})
)
See Also