Line 11: | Line 11: | ||
</pre> | </pre> | ||
− | === Step 2 === | + | === Step 2 === |
− | Now the FCKeditor is available and ready to use. So, just insert the following code in your page to create an instance of the editor inside a < | + | Now the FCKeditor is available and ready to use. So, just insert the following code in your page to create an instance of the editor inside a <FORM>: |
+ | <pre><form action="sampleposteddata.afp" method="post" target="_blank"> | ||
+ | <% | ||
− | + | sBasePath = "/fckeditor/" && <-- Change this to your local path | |
− | |||
− | |||
− | + | lcText = [This is some <strong>sample text</strong>. You are using ] | |
− | + | lcText = lcText + [<a href='http://www.fckeditor.net/'>FCKeditor</a>.] | |
− | lcText=[This is some | ||
− | lcText=lcText+[ | ||
oFCKeditor = CREATEOBJECT("FCKeditor") | oFCKeditor = CREATEOBJECT("FCKeditor") | ||
oFCKeditor.fckeditor("FCKeditor1") | oFCKeditor.fckeditor("FCKeditor1") | ||
− | oFCKeditor.BasePath | + | oFCKeditor.BasePath = sBasePath |
− | oFCKeditor.cValue | + | oFCKeditor.cValue = lcText |
? oFCKeditor.Create() | ? oFCKeditor.Create() | ||
− | % | + | %> |
− | </pre> | + | </pre> |
− | + | "FCKeditor1" is the name used to post the editor data on forms. | |
− | "FCKeditor1" is the name used to post the editor data on forms. | ||
=== Step 3 === | === Step 3 === |
Revision as of 13:07, 2 January 2008
It is very easy to use FCKeditor in your AFP web pages. All the integration files are available in the official distributed package. To start the integration follow the instructions below.
Integration step by step
Step 1
Suppose that the editor is installed in the /fckeditor/ path of your web site. The first thing to do is to create an unique session file for the AFP - e.g. a file called fck.afpa
<application ID="fck"/>
Step 2
Now the FCKeditor is available and ready to use. So, just insert the following code in your page to create an instance of the editor inside a <FORM>:
<form action="sampleposteddata.afp" method="post" target="_blank"> <% sBasePath = "/fckeditor/" && <-- Change this to your local path lcText = [This is some <strong>sample text</strong>. You are using ] lcText = lcText + [<a href='http://www.fckeditor.net/'>FCKeditor</a>.] oFCKeditor = CREATEOBJECT("FCKeditor") oFCKeditor.fckeditor("FCKeditor1") oFCKeditor.BasePath = sBasePath oFCKeditor.cValue = lcText ? oFCKeditor.Create() %>
"FCKeditor1" is the name used to post the editor data on forms.
Step 3
The editor is now ready to be used. Just open the page in your browser to see it at work.
Sample code
The complete sample without HTML Overhead - find the full sample in your Samples directory.
<html><head></head><body> <form action="sampleposteddata.afp" method="post" target="_blank"> <% sBasePath="../../../fckeditor/" && <-- Change this to your local path lcText=[This is some <strong>sample text</strong>. You are using ] lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.] oFCKeditor = CREATEOBJECT("FCKeditor") oFCKeditor.fckeditor("FCKeditor1") oFCKeditor.BasePath = sBasePath oFCKeditor.cValue = lcText ? oFCKeditor.Create() %> <input type="submit" value="Submit"> </form> </body></html>