It's PD html editor that I have used - an extention from the dreamweaver
exchange. The save button has this javascript:
onclick="OnFormSubmit()";
The save button sends the contents of the editor pane to the hidden text
field. This then only gets submitted with the rest of the other fields
when the
submit form button is clicked. So there are two clicks that need to be
made; a
save click and a submit form click. The trouble is if the user doesn't
click
save first, then the hidden text field doesn't have content to submit to
the
db, thus undoing all of their hard work in the editor pane. So, I would
like
some method of being able to prevent users from loosing their editor
content.
I did try to use the onclick="OnFormSubmit()"; to send the whole form, but
nothing happened!
Here's a url:
http//:www.ipra.org/gwa_entryform3.asp
It's a bit messy at the mo' but you get the idea.
Cheers
Mat