WYIWYG Editor on custom textarea

edited February 2014 in Modules
Hey,

Wondering if when I'm using CodeIgniters form builder if its possible to have the WYIWYG editor to work on a textarea?

EG:

<?php
$formContent = array(
'name' => 'content',
'id' => 'content',
'maxlength' => '255',
'size' => '300',
'style' => 'width:50%',
'class' => 'wysiwyg'
);
echo form_open_multipart();
echo form_textarea($formContent);
echo form_close();
?>

Using Fuel's form builder isn't possible as I have a custom HTML form field in the view.

Comments

  • edited 11:28PM
    Actually never mind just figured out the whole custom field business using fuels form builder!
Sign In or Register to comment.