I am trying to create a form with the Drupal 5 form API that has two textareas, both of which should have have a wysiwyg editor enabled to allow HTML formatted input. However, only the second textarea has the editor enabled, the other one displays the "Input format selector", but not the editor controls. I have tried this with TinyMCE 3.3.9.3 and 3.3.9.4b and CKEditor 3.5.1.6398 both using the wysiwyg module integration, the result in both cases is the same.

In this related question it is mentioned that there might be a problem of identical IDs. I have no clue how to transfer this solution to the Drupal Form API, since I gave the two fields different names. In the generated HTML, they have separate HTML ids based on the Drupal names I assigned.

The code I used to create the text areas is the following:

$form['oos'] = array(
    '#tree' => false,
);

$form['oos']['oosmessage'] = array(
    '#description' => t('Something'),
    '#title' => t('Generic out of stock message'),
    '#type' => 'textarea',
);

$form['oos']['format'] = filter_form(1, 20, array('format'));

$form['oosmd'] = array(
    '#tree' => false,
);

$form['oosmd']['oosmessage_date'] = array(
    '#type' => 'textarea',
    '#title' => t('Out of stock message until a specific date'),
    '#description' =>t('Something else.'),
);
$form['oosmd']['format'] = filter_form(1, 20, array('format'));

Thanks!

Ellen

link|improve this question
Are there any javascript errors reported? – Berdir Feb 3 '11 at 13:26
feedback

1 Answer

Try to give the two textareas different ids and see if that works.

link|improve this answer
Thanks. As far as I can tell, the two textareas already have different ids. Could you suggest what to change? – Ellen Feb 2 '11 at 9:52
Hmm, i am not that much into Drupal myself. Could you please post what "tinymce.editors[0].id" and "tinymce.editors[1].id" yield when used int he firebug console? – Thariama Feb 2 '11 at 10:58
They are undefined. – Ellen Feb 2 '11 at 11:46
That sounds wierd. What about tinymce and tinymce.editors? – Thariama Feb 2 '11 at 13:07
They are both defined, but tinymce.editors is an empty array. – Ellen Feb 2 '11 at 13:44
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.