Rob
|
| Posted: 02/10/2006, 1:48 AM |
|
Hy
someone have used FCK in CCS3? I try to use it in ASP page but seems that doesn't work. I see the page without changes. Any suggestion?
Thanks
|
|
|
 |
Walter Kempees
|
| Posted: 02/10/2006, 1:51 AM |
|
Search the Forum, many posts available
"Rob" <Rob@forum.codecharge> schreef in bericht
news:643ec615542682@news.codecharge.com...
> Hy
> someone have used FCK in CCS3? I try to use it in ASP page but seems that
> doesn't work. I see the page without changes. Any suggestion?
>
> Thanks
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
Rob
|
| Posted: 02/10/2006, 1:53 AM |
|
I try to use it reading the posts but doesn't work.
Rob
|
|
|
 |
Walter Kempees
|
| Posted: 02/10/2006, 2:26 AM |
|
Here are some other instructions and related discussions: http://forums.codecharge.com/posts.php?post_id=55253 http://forums.codecharge.com/posts.php?post_id=67564
Also in ASP, General.
It can be done, I just haven't got the time/power at the moment.
Someone else?
|
|
|
 |
Rene S
|
| Posted: 02/10/2006, 3:21 AM |
|
Hi,
In page header:
<script src="FCKeditor/fckeditor.js" type="text/javascript">
In page "onload" event:
var oFCKeditor = new FCKeditor('article_desc');
// note that the name
// should not include the {} symbols and be
// the name of the field if you were to view
// the source of the web page
// and look for the textarea's name.
oFCKeditor.BasePath = 'FCKeditor/' ;
oFCKeditor.Height = "500"; //put the height in pixels here
oFCKeditor.Width = "400";
oFCKeditor.ReplaceTextarea();
Where "article_desc" is the name of your textarea where you want the editor.
In HTML of page (at your textarea):
<textarea id="{article_desc_Name}" name="{article_desc_Name}" rows="3" cols="70">{article_desc}</textarea>
Note the textarea id!
Should work, mine does.
Good luck,
Rene
|
|
|
 |
Rob
|
| Posted: 02/10/2006, 5:39 AM |
|
Hi Rene,
thanks for tip, now work properly, I have only a little problem about the view of CSS, all tags are properly inserted but the style is not correctly viewed, seems that is not inserted the style on the page...
Rob
|
|
|
 |
|