Hello!
I have a form I'm using for editing connected to chronoconnectivity.
I had a text area that had the wysiwyg option active but still wasn't showing the editor, so I decided to use the following code in a custom code field:
<?php
echo $editor->display( 'Description', $row->Description , '100%', '200', '75', '20', false ) ;
?>
The editor shows up now but it doesn't load the info I have stored in the db.
Please help me!😟
I have a form I'm using for editing connected to chronoconnectivity.
I had a text area that had the wysiwyg option active but still wasn't showing the editor, so I decided to use the following code in a custom code field:
<?php
echo $editor->display( 'Description', $row->Description , '100%', '200', '75', '20', false ) ;
?>
The editor shows up now but it doesn't load the info I have stored in the db.
Please help me!😟
Please try this:
or
Regards,
Max
<?php
echo $editor->display( 'Model[Description]', '' , '100%', '200', '75', '20', false ) ;
?>
or
<?php
echo $editor->display( 'Model[Description]', $row["Model"]["Description"] , '100%', '200', '75', '20', false ) ;
?>
Regards,
Max
This topic is locked and no more replies can be posted.
