XML List Summary Function

The XML List Summary function wraps XML around the properties of a list of content, created as a list summary in the Ektron CMS400.NET Workarea. Once created you can use the XML to display the list summary information. The ecmListSummaryXML function allows you to easily define how the list summary data appears on the Web page.

<TR>

<TD>

<CFMODULE template="#request.ecm.AppPath#ecmListSummaryXML.cfm"

Folder="" Recursive="" OrderBy=""

MaxNumber="" ObjType="" SummaryType="" >

</TD>

</TR>

This function is basically the same as the List Summary XML function in ASP. See XML List Summary Function for details.

The only difference between the Coldfusion function and the ASP one is the syntax for implementing it. The ColdFusion example is below.

XML List Summary Example

<TR>

<TD>

<CFMODULE template="#request.ecm.AppPath#ecmListSummaryXML.cfm"

Folder="\books\" Recursive="0" OrderBy="Title,asc"

MaxNumber="0" ObjType="folder" SummaryType="alltypes">

</TD>

</TR>

Previous TopicNext Topic|