Table of Contents


aspx:CollateralList

This component displays lists of collaterals from playbooks a user has access to within an Active Page, lists such as "Recent Collaterals" or "Popular Collaterals". Also, you can display content from a specific list of Playbooks.
 

<aspx:CollateralList runat='server' type='recent' title='Popular Resources' />

See more examples below.
 

Properties

PropertyDescription
Sizenumeric, optional
A number of recent articles are shown. A number between 6 and 20, default is: 10.
Titlestring, optional.
Title of the list. This is an optional property. If you leave it blank, a default title appropriate to "type" selected will be displayed.
TitleCssstring, optional.
If you wish to give the title of the list custom styling, you can use this property.
Typestring, mandatory.
Possible options are: recent or popular.

The example below shows how you can show assets from a specific list of Playbooks:

<aspx:CollateralList runat='server' type='recent'>
  <aspx:CollateralListItem galleryId='05t00000000002e0000' />
  <aspx:CollateralListItem galleryId='05t0000000000210000' />
</aspx:CollateralList>