Graham Pearson
|
| Posted: 09/24/2004, 5:39 AM |
|
Has anyone been able to get CCS and WYSIWYG Textarea Editors to work
together without much headache's. I have just found one that is Open
Source and works with Netscape and IE which I am trying to impliment
with my projects. I figure it will take some major manual code to
make it work or is their documentation on how to make a form control
so all I would have to do is click a button to insert the info.
---
Graham Pearson, System Administrator / Web Developer
Northern Indiana Educational Services Center
56535 Magnetic Drive, Mishawaka IN 46544 http://www.niesc.k12.in.us
|
|
|
 |
miro
|
| Posted: 09/24/2004, 1:55 PM |
|
use fckeditor, do not waste time with others.
|
|
|
 |
dataobjx
Posts: 181
|
| Posted: 09/24/2004, 7:04 PM |
|
You can register at www.dataobjx.net and download the first issue of CCS Developer Magazine - The First issue demonstrates how to plug in the WYSIWYG editor and supplies the source for the article.
After logging in click on the CCS Magazine link then download the issue and source.
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |
phpoint
Posts: 4
|
| Posted: 09/25/2004, 8:29 PM |
|
Try this http://www.interactivetools.com/products/htmlarea/.
I am using succesfully htmlarea v2.03. Easy to install, easy to use - you can replace atleast all textarea in document by that.
|
 |
 |
crecalde
Posts: 13
|
| Posted: 09/25/2004, 9:51 PM |
|
The fckeditor (available at http://www.fckeditor.net/) is definitely the way to go. It installs in minutes, and works in CCS textareas through the use of a little java code that comes with the download. CCS never even really deals with it, because fckeditor does its work at runtime in the browser. So your projects are completely maintainable within the CCS.
Just follow the documentation and you'll get it working without any additional coding.
C.
|
 |
 |
jthillier
Posts: 4
|
| Posted: 09/26/2004, 5:27 PM |
|
I have downloaded fckeditor. where did you find the intall documentation ?Thanks in advance
|
 |
 |
dataobjx
Posts: 181
|
| Posted: 09/28/2004, 5:42 AM |
|
You can register and login at www.dataobjx.net to download the FREE issue is CCS Developer Magazine.
This issue supplies the code and the FCKEditor as well as demonstrating the technique used to integrate it into your applications.
We look forward to seeing you online.
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |
E43509
Posts: 283
|
| Posted: 09/28/2004, 12:23 PM |
|
depending on the language you are using, I found www.siteobjects.com soEditor to be my one of choice. It runs in .net and cf. And it's free for the lite version
|
 |
 |
claudio
|
| Posted: 09/30/2004, 12:22 AM |
|
I check all and the fckeditor is really the best
|
|
|
 |
Theo
|
| Posted: 11/08/2004, 4:11 PM |
|
I've downloaded fckeditor and followed the instructions... I think it does not work with asp, does it?
|
|
|
 |
dataobjx
Posts: 181
|
| Posted: 11/09/2004, 7:28 AM |
|
Yes, FCKEditor works with .asp....
Did download the free issue of CCSDeveloper Magazine. In that first article, we demonstrate the technique for integrating FCKEditor into a CCS Project.
htmlArea is also a great editor, and is the best one to use if you have frames that are less than 600px wide. If your frame is 600px or less, FCKEditor will cause a horizontal scroll. Whereas htmlArea will not.
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |
Jerker
|
| Posted: 11/11/2004, 3:00 AM |
|
I have download the FCKEditor but i cant find a god way to implement it in CCS. I have tried the "replace" script in the html file without success. Im using PHP. Is there annyone who knows how to do this?
|
|
|
 |
mramirez18
Posts: 56
|
| Posted: 03/03/2005, 9:35 PM |
|
Does anyone have a CCS example, who has implemented FCKEditor successfully
|
 |
 |
peterr
Posts: 5971
|
| Posted: 03/03/2005, 10:32 PM |
|
Please read the above messages before responding. This discussion answers your question.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
karen
Posts: 99
|
| Posted: 04/09/2005, 10:31 PM |
|
I have implemented htmlarea ok on a record type page but I can't seem to get it to work on an editable grid. Does it work in an editable grid? Thanks in advance.
|
 |
 |
csydow
Posts: 22
|
| Posted: 04/13/2005, 2:41 AM |
|
FckEditor in CCS:
STEP 1:
put the following script right after your textarea. In this case, mine is called "content" in a form called "pages"
<script type="text/javascript">
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
oFCKeditor.CheckBrowser = true ;
oFCKeditor.BasePath = 'FCKeditor/' ;
oFCKeditor.Height = 400 ;
oFCKeditor.width = "100%" ;
oFCKeditor.Value = document.forms['pages'].content.value;
oFCKeditor.ToolbarSet = "MyToolbar" ;
oFCKeditor.Create() ;
</script>
STEP 2:
Put this code in the <head> section:
<script type="text/javascript">
function submitForm()
{
//Transfer the edited content to the Hidden Form field.
var fck = FCKeditorAPI.GetInstance('FCKeditor1');
document.forms['pages'].content.value=fck.GetHTML();
}
</script>
STEP 3:
Add the submitForm() to the onclick of the Add and/or Submit button.
That should do it.
|
 |
 |