GridControl.CustomColumnDisplayText Event
Allows you to customize a data cell‘s display text.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.2.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
Event Data
The CustomColumnDisplayText event's data class is CustomColumnDisplayTextEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Column | Gets the column which owns the processed cell. |
DisplayText | Gets or sets the display text for the cell currently being processed. |
ListSourceIndex | Gets the index of a record in a data source that corresponds to the processed data row. |
Row | Gets the row which owns the processed cell. |
RowHandle | Gets the processed row’s handle. |
ShowAsNullText | Specifies whether text corresponding to a null value appears faded. |
Source | Gets the grid control that raised the event. |
Value | Gets the processed cell’s value. |
Remarks
The CustomColumnDisplayText event occurs for bound and unbound columns. The printed GridControl also displays customized text.
The CustomColumnDisplayTextEventArgs.DisplayText property contains a cell’s display text. To customize the display text, assign a string value to this property.
If column data is sorted or grouped, the event’s RowHandle and ListSourceRowIndex properties return invalid values. As a result, you cannot determine the processed row and obtain other cell values. To customize the display text, use techniques described in the following topic instead: Format Cell Values.
If you want to maintain a clean MVVM pattern and customize a data cell’s display text in a View Model, create a command and bind it to the CustomColumnDisplayTextCommand property.
Example
The following example shows how to display custom text in data cells. In this example, the GridControl adds the (SALE)
string to the Product Name if a value in the Discount column is greater than 20:
<dxg:GridControl CustomColumnDisplayText="gridControl1_CustomColumnDisplayText" Name="gridControl1">
<dxg:GridControl.Columns>
<dxg:GridColumn x:Name="columnProductName" FieldName="ProductName" />
<dxg:GridColumn FieldName="Price" />
<dxg:GridColumn FieldName="Discount" />
</dxg:GridControl.Columns>
</dxg:GridControl>
void gridControl1_CustomColumnDisplayText(object sender, CustomColumnDisplayTextEventArgs e) {
if(!e.Column.Equals(columnProductName) || e.ListSourceIndex < 0)
return;
if((double)gridControl1.GetCellValue(e.RowHandle, "Discount") > 20)
e.DisplayText = ((string)e.Value) + " (SALE)";
}
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CustomColumnDisplayText event.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.