DataListFooterTemplate Property
The template control type to use for the footer
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public Type FooterTemplate { get; set; }
Public Property FooterTemplate As Type
Get
Set
public:
property Type^ FooterTemplate {
Type^ get ();
void set (Type^ value);
}
member FooterTemplate : Type with get, set
Property Value
Type The footer template is bound to the data source as a whole rather than an individual row.
If not set, a footer section will not be shown.
// AddressFooter is a user control derived from TemplateControl
dataList.FooterTemplate = typeof(AddressFooter);
' AddressFooter is a user control derived from TemplateControl
dataList.FooterTemplate = GetType(AddressFooter)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.