ViewFooter element (List)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Defines the footer, or suffix, for a view.

<ViewFooter
  ExpandXML = "TRUE" | "FALSE">
</ViewFooter>

Note

Most standard Microsoft SharePoint Foundation 2010 list views ignore this element. For more information, see XMLDefinition and CAML View Schema.

Elements and attributes

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute Description
ExpandXML
Optional Boolean. TRUE to re-pass the rendered content through the Collaborative Application Markup Language (CAML) interpreter, which allows CAML to render CAML.

Child elements

Numerous

Parent elements

Occurrences

  • Minimum: 0
  • Maximum: 1

Example

The following example defines the view footer for a document library.

<ViewFooter>
  <HTML>
    <![CDATA[ </TABLE> ]]>
  </HTML>
  <HTML>
    <![CDATA[ <TABLE width="100%" border=0 rules=rows>
        <tr><td height="8"><img src=" ]]>
  </HTML>
  <HttpVDir />
  <HTML>
    <![CDATA[ /_layouts/images/blank.gif" width="1"
        height="5"></td></tr></table> ]]>
  </HTML>
</ViewFooter>

See also