1
i'm running into a few problems including more than 1 dhtml area into a form.
how can i include 3 seperate trays in the same form?
i'm currently using this method.
$extinfo_tray = new XoopsFormElementTray(_US_EXTINFO, '
');
include_once 'include/xoopscodes.php';
$extinfo_tarea = new XoopsFormDhtmlTextArea('', 'user_extinfo', $xoopsUser->getVar('user_extinfo', 'E'));
$extinfo_tray->addElement($extinfo_tarea);
and then further along:
$form->addElement($extinfo_tray);
but it crashes my browser
i tried using include instead of include_once but that screws it up completely..