PDFreactor:
3.0.3311 (2008-07-07)
edit-on Pro:
5.2.221 (2008-06-23)
edit-on JavaBean SDK:
5.3.310 (2008-10-24)
TYPO3 Extension:
2.0.2 (2007-06-14)
1.10 Can I use edit-on Pro with certain encodings, e.g. UTF-8?
Yes, the encoding of the applet can be set using the following applet param:
Example (UTF-8):
<PARAM name="ENCODING" value="UTF8" />
The notation of the value within the param can vary. You will find a list of the available encodings at:java.sun.com.
The param specifies the encoding of the data for export/import. The server side script should handle the incoming data using the encoding specified in this parameter. Setting the applet's encoding requires that the page containing the <applet> tag is using the same encoding as the applet. To achieve this, the page must contain a META tag specifying the browser encoding within the page’s header tag.
Example:
<head> ... <meta http-equiv="Content-Type" content="text/html;charset=...encoding value..." /> ... </head>
NOTE: Support for specific encodings may be platform dependent.