Determines the text that is displayed in the group footer rows.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[DefaultValueAttribute("")]
[JsonAttribute(true, true, "")]
[TypeConverterAttribute("C1.Web.UI.Design.C1GridViewGroupTextConverter, C1.Web.UI.Design.2")]
public string FooterText { get; set; }
Visual Basic
<DefaultValueAttribute("")> _
<JsonAttribute(True, True, "")> _
<TypeConverterAttribute("C1.Web.UI.Design.C1GridViewGroupTextConverter, C1.Web.UI.Design.2")> _
Public Property FooterText As String
	Get
	Set

Remarks

The text may include up to two placeholders: "{0}" is replaced with the value being grouped on and "{1}" is replaced with the group's column header

The text may also include HTML tags which you can use to add formatting commands.

The text may be set to "Custom". Doing so causes the GroupText event to be raised when processing a grouped footer.

Examples

This sample shows how to use HTML tags and placeholders.
Copy Code 
col.GroupInfo.FooterText = "Totals for {0}
Copy CodeC#
col.GroupInfo.FooterText = "Totals for <b><i>{0}</i></b>;

See Also