Table¶
Table-type content elements are not rendered using a standard TypoScript content object but instead rely on a USER object provided by CSS Styled Content, as can be seen in the TypoScript setup:
tt_content.table = COA
tt_content.table {
10 = < lib.stdheader
20 = USER
20.userFunc = \TYPO3\CMS\CssStyledContent\Controller\CssStyledContentController->render_table
20.field = bodytext
...
}

Input of a table content element in the TYPO3 backend
The render_table
function supports a whole variety of specific
properties, which are detailed below.
Note
All properties of USER objects also apply, in particular stdWrap.
Reference¶
field¶
Property
field
Data type
data
Description
The field to fetch the content from.
Default
bodytext
innerStdWrap¶
Property
innerStdWrap
Data type
stdWrap
Description
StdWrap to the content of the table cells.
With this you can for example pass the content through lib.parseFunc
Default
innerStdWrap.parseFunc =< lib.parseFunc