typo3 flexform html内容元素添加在扩展中

问题描述 投票:1回答:1

我如何才能在typo3中的flexform中添加html内容元素。

<settings.sDEF1.sociallinks>
                                        <TCEforms>
                                            <exclude>1</exclude>
                                            <label>Social Links</label>
                                            <config>
                                                <type>text</type>
                                                <renderType>t3editor</renderType>
                                                <format>html</format>
                                                <cols>30</cols>
                                                <rows>5</rows>
                                            </config>
                                        </TCEforms>
                    </settings.sDEF1.sociallinks> 

导致无法使用。

参考文献。https:/docs.typo3.orgtypo3cmsTCAReferenceReferenceColumnsTextIndex.html#rendertype。

typo3 fluid extbase typo3-6.2.x
1个回答
0
投票
        <options.richTextArea>
            <TCEforms>
                <exclude>1</exclude>
                <label>
                    Rich Text Area
                </label>
                <config>
                    <type>text</type>
                    <rows>5</rows>
                    <cols>300</cols>
                    <enableRichtext>true</enableRichtext>
                </config>
                <defaultExtras>richtext[]</defaultExtras>
            </TCEforms>
        </options.richTextArea>
© www.soinside.com 2019 - 2024. All rights reserved.