1
I want to add this editor instead of a simple textarea, since it does not detect linebreaks.
I tried with this :
include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";
$textarea = new XoopsFormDhtmlTextArea("Description", 'desc', $predata['description'], 15, 70);
$textarea->doHtml = true;
echo addElement($textarea, true);
Error :
Fatal error: Call to undefined function addElement()
Thanks.
EDIT : Forget it, now is working :P :
include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";
$my_form = new XoopsThemeForm("Add", "form", "form.php");
$my_form->addElement(new XoopsFormDhtmlTextArea("Description", 'desc', $predata['descripcion'], 15, 70), true);
$my_form->display();