I have a custom form and the following textarea element.
$form['fieldset']['email_template'] = array( '#type' => 'textarea', '#title' => t('E-mail template content'), '#default_value' => '', '#description' => t('A valid template for email trigger.<b>Please type ":" for variable suggestions</b>'), '#required' => TRUE, '#cols' => 60, '#resizable' => TRUE, '#rows' => 5, );
After I installed the CkEeditor module and enabled it, the following text appeared under that form element.
I added sky:notification/addTemplate.edit-email-template in the CkEditor module settings as element ID that should use the CkEditor, but the editor is still not used for that element.
How can I enable CkEditor for the email_template element?