DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

ListViewHelperΒΆ

Rendering a list given as a one dimensional array. It is possible to easily define different default styles and apply them using the type attribute, see chapter Text Types.

Basic Usage

<pdf:list listElements="{0: 'Websites using TYPO3', 1: 'Application Development', 2: 'Mobile Apps', 3: 'Hosting'}"/>
<pdf:list listElements="{someArrayProperty}"/>

Advanced Usage

<pdf:list
        trim="1"
        removeDoubleWhitespace="1"
        color="#999999"
        fontFamily="arial"
        fontSize="14"
        fontStyle="bold"
        lineHeight="1.5"
        characterSpacing="0.2"
        paragraphLineFeed="1"
        alignment="center"
        autoHyphenation="1"
        padding="{top:1, right:0, bottom:0, left:0}"

        bulletColor="#333"
        bulletImageSrc="EXT:pdfviewhelpers/some/path/image.png"
        bulletSize="2.5"

        listElements="{0: 'Websites using TYPO3', 1: 'Application Development', 2: 'Mobile Apps', 3: 'Hosting'}"
        />