TCA selectCheckBox - 输出流体模板

时间:2017-06-23 19:47:50

标签: fluid typo3-7.6.x

我在TCA中使用

        'uebersetzungen' => [
        'exclude' => true,
        'label' => 'LLL:EXT:maschinen/Resources/Private/Language/locallang_db.xlf:tx_maschinen_domain_model_maschine.uebersetzungen',
        'config' => [
            'type' => 'select',
            'renderType' => 'selectSingle',
            'items' => [
                ['6:1', 1],
                ['8:1', 2],
                ['11:1', 3],
                ['14:1', 4],
            ],
            'size' => 4,
            'maxitems' => 1,
            'eval' => ''
        ],
    ],

使用

获取流体模板中的输出
        <f:switch expression="{maschine.uebersetzungen}">
            <f:case value="1">6:1</f:case>
            <f:case value="2">8:1</f:case>
            <f:case value="3">11:1</f:case>
            <f:case value="4">14:1</f:case>
        </f:switch>

现在我想将renderType更改为

'renderType' => 'selectSingleBox'

但我不知道如何获得这几个值。

我看了TYPO3 TCA type select in FLUID? 但是我不确定它是否是同一个问题,因为我在TCA中有不同的语法

1 个答案:

答案 0 :(得分:1)

感谢@Paul Beck,我找到了解决问题的答案。

我可以使用此处发布的解决方案:TYPO3 TCA type select in FLUID?

但我不得不改变这条线

protected $featuresDecoded;

protected $featuresDecoded = [];