Select-Felder im Backend

                        <companyContact type="array">
                            <TCEforms>
                                <label>Company Contact Person</label>
                                <config>
                                    <type>select</type>
                                    <renderType>selectSingle</renderType>
                                    <items>
                                        <numIndex index="0">
                                            <numIndex index="0">Ohne Ansprechpartner</numIndex>
                                            <numIndex index="1"></numIndex>
                                        </numIndex>
                                        <numIndex index="1">
                                            <numIndex index="0">ZAGRO</numIndex>
                                            <numIndex index="1">zagro</numIndex>
                                        </numIndex>
                                        <numIndex index="2">
                                            <numIndex index="0">ZWEIWEG</numIndex>
                                            <numIndex index="1">zweiweg</numIndex>
                                        </numIndex>
                                        <numIndex index="3">
                                            <numIndex index="0">GMEINDER</numIndex>
                                            <numIndex index="1">gmeinder</numIndex>
                                        </numIndex>
                                    </items>
                                </config>
                            </TCEforms>
                        </companyContact>
page ts
        companyContact = COA
        companyContact {
            10 = LOAD_REGISTER
            10 = TEXT
            10.data = field:flexform_companyContact
 
            20 = TEXT
            20.stdWrap.dataWrap = {register:companyContact}
 
            30 = RESTORE_REGISTER
        }
setup

Checkbox im Backend

			<noPadding type="array">
                <TCEforms type="array">
                <label>no padding:</label>
                <config type="array">
                    <type>check</type>
                    <default></default>
                </config>
                </TCEforms>
            </noPadding>
page ts
        noPadding = COA
        noPadding {
            10 = LOAD_REGISTER
            10 = TEXT
            10.data = field:flexform_noPadding

            20 = TEXT
            20.stdWrap.dataWrap = {register:noPadding}

            30 = RESTORE_REGISTER
        }
setup
<f:comment>Abfrage-Beispiel:</f:comment>
{f:if(condition: '{noPadding}', then: 'p-0', else: '')}
fluid template

ce layout mit gridelements unterscheiden

# Typo3 Layout Optionen Content-Elemente (ganzer Container)
tt_content.gridelements_pi1.20.10.setup.1.wrap.cObject = CASE
tt_content.gridelements_pi1.20.10.setup.1.wrap.cObject {
	key.field = layout
    1 = TEXT
    1.value = <div class="container container-blue"><div class="row">|</div></div>
    2 = TEXT
    2.value = <div class="csc-default grueneBox">|</div>
}
setup