I see at least two other people having this problem recently with no suggestions or resolutions posted. I'm trying to implement WYSIWYG (CKEditor 3.6.2.7275) via the Form API. I've followed the instructions on the "Developer Info" page, http://drupal.org/node/358316.

$form['promo']['textarea'] = array(
'#type' => 'textarea',
'#title' => t('Status Summary'),
'#default_value' => $node->field_profile_promo[0]['value'],
);
$form['promo']['format'] = filter_form($node->field_profile_promo[0]['format']);

The input format fieldset is activated and the CKeditor assets load in the browser. But the GUI does not appear.

Comments

twod’s picture

$form['promo']['textarea'] = array(
'#type' => 'textarea',
'#title' => t('Status Summary'),
'#default_value' => $node->field_profile_promo[0]['value'],
);
$form['promo']['format'] = filter_form($node->field_profile_promo[0]['format']);

That does look correct for D6, but is there a '#tree' = TRUE in promo, or directly in $form?
Do you see any JavaScript errors in the browser when viewing the form?

Could you please link to the other issues and I'll have a look?

twod’s picture

Status: Active » Postponed (maintainer needs more info)
twod’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

Without further details about the problem I can only close this issue. Please re-open it if you can provide the requested information.