logo

New Response

« Return to the blog entry

You are replying to:

  1. My I suggest an alternative way of implementing TinyMCE in a page which would avoid this problem.

    1. First create a editable text field at the top of your form.( for this example its name is aTextField ). Hide of from the web and notes.

    Now where you actually want the text area and content to appear create some computed text marked as pass thru html.

    Add the following formula to the comuted text.

    prefix := "<textarea name=\"aTextField\" style=\"visibility:hidden;\">";

    suffix := "</textarea>";

    @If (@IsDocBeingEdited;

    prefix+aTextField+suffix;

    aTextField )

    I have been using this at work and it works fine.

Your Comments

Name:
E-mail:
(optional)
Website:
(optional)
Comment: