我的问题看起来很简单,但我没有在文档中找到任何东西,或者在我的研究过程中(至少是关于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
),
你可以使用 "AdminPatternsController "作为指导。
array(
'type' => 'textarea',
'label' => 'text area with rich text editor',
'name' => 'type_textarea_rte',
'autoload_rte' => true
),