CKEditor在Typo3后端模块中不起作用

时间:2018-08-16 08:52:38

标签: ckeditor typo3 typo3-8.x

我使用扩展构建器创建了一个后端模块。

创建的配置文件如下(部分!):

'body' => [
            'exclude' => true,
            'label' => 'LLL:EXT:myext/Resources/Private/Language/locallang_db.xlf:tx_myext_domain_model_thefield.body',
            'config' => [
                'type' => 'text',
                'enableRichtext' => true,
                'richtextConfiguration' => 'default',
                'fieldControl' => [
                    'fullScreenRichtext' => [
                        'disabled' => false,
                    ],
                ],
                'cols' => 40,
                'rows' => 15,
                'eval' => 'trim'
            ],

        ],

根据文档,拥有enableRichtext => true就足够了。

A,Richtext-Editor不会显示在表单上。

有什么想法吗?我忘了配置一些东西吗?在用户的后端设置中配置了CKEditor。

静态流体模板包含在TS-PageConfig中。

使用T3 8.7

0 个答案:

没有答案