Skip to main content
A newer version of this page is available. .

BootstrapCardViewColumnDisplayTextEventHandler Delegate

A method that will handle the BootstrapCardView.CustomColumnDisplayText event.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

public delegate void BootstrapCardViewColumnDisplayTextEventHandler(
    object sender,
    BootstrapCardViewColumnDisplayTextEventArgs e
);

Parameters

Name Type Description
sender Object

The event source.

e BootstrapCardViewColumnDisplayTextEventArgs

A BootstrapCardViewColumnDisplayTextEventArgs object that contains event data.

Remarks

The example below demonstrates how to display the “empty” string within the Discount column’s cells if they contain zero values.

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