激活TinyMCE的displayForm()方法的Prestashop 1.7

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

我的问题看起来很简单,但我没有在文档中找到任何东西,或者在我的研究过程中(至少是关于1.6的答案)如何为我的displayForm()方法的textarea激活tinyMCE?

'input' => array(
                        /* ... */

                          array(
                              'type' => 'textarea',
                              'label' => $this->l('Item Details'),
                              'required' => true,
                               // I tried this, indicated by the doc
                              'options' => array(
                                  'autoload' => true,
                                  'limit' => 21000
                              ),
php module prestashop
1个回答
2
投票

你可以使用 "AdminPatternsController "作为指导。

            array(
                'type' => 'textarea',
                'label' => 'text area with rich text editor',
                'name' => 'type_textarea_rte',
                'autoload_rte' => true
            ),
© www.soinside.com 2019 - 2024. All rights reserved.