Back to Devexpress

ASPxCardView.CustomColumnDisplayText Event

aspnet-devexpress-dot-web-dot-aspxcardview-f21f9386.md

latest5.8 KB
Original Source

ASPxCardView.CustomColumnDisplayText Event

Enables custom display text to be provided for any column.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public event ASPxCardViewColumnDisplayTextEventHandler CustomColumnDisplayText
vb
Public Event CustomColumnDisplayText As ASPxCardViewColumnDisplayTextEventHandler

Event Data

The CustomColumnDisplayText event's data class is ASPxCardViewColumnDisplayTextEventArgs. The following properties provide information specific to this event:

PropertyDescription
ColumnGets the data column that refers to the card currently being processed.
DisplayTextEnables you to set a custom text for the cell currently being processed. Inherited from ASPxGridColumnDisplayTextEventArgs.
EncodeHtmlGets or sets a value that specifies whether the cell display text keeps any of its values that are HTML as HTML, or instead, strips out the HTML markers. Inherited from ASPxGridColumnDisplayTextEventArgs.
KindGets the type of operations with grid data. Inherited from ASPxGridColumnDisplayTextEventArgs.
ValueGets the edit value of the cell currently being processed. Inherited from ASPxGridColumnDisplayTextEventArgs.
VisibleIndexGets the visible index of the data item (row, card or record) where the processed cell resides. Inherited from ASPxGridColumnDisplayTextEventArgs.

The event data class exposes the following methods:

MethodDescription
GetFieldValue(Int32, String)Returns the value of the specified data source field in the specified data item (row, card or record). Inherited from ASPxGridColumnDisplayTextEventArgs.
GetFieldValue(String)Returns the value of the specified data source field in the current data item (row, card or record). Inherited from ASPxGridColumnDisplayTextEventArgs.

Remarks

The CustomColumnDisplayText event can be used to provide custom display text for any cell. This event is fired for both bound and unbound columns. The text provided via this event will be used when the ASPxCardView is printed or exported.

Initially, the ASPxGridColumnDisplayTextEventArgs.DisplayText parameter returns null. To provide custom display text, assign the required string to this parameter. To get the current cell value, use the ASPxGridColumnDisplayTextEventArgs.Value parameter.

The CustomColumnDisplayText event fires in two cases.

Note

The CustomColumnDisplayText event should not be handled for template columns.

Example

The following example displays the “empty” string within the Discount column’s cells if they contain zero values.

The image below shows the result:

csharp
protected void CardView_CustomColumnDisplayText(object sender, ASPxCardViewColumnDisplayTextEventArgs e) {
        if (e.Column.FieldName != "Discount") return;
        if (Convert.ToInt32(e.Value) == 0)
            e.DisplayText = "empty";
    }

See Also

Data Formatting

Card View

ASPxCardView Class

ASPxCardView Members

DevExpress.Web Namespace