views:

1052

answers:

3

It's just my first dive on FCKEditor. My simple question is how to use the Save icon on the toolbars, and my second question is how to remove/hide some of the toolbar icons?

I am using asp.net and c#. Thanks.

A: 

for hiding or removing some icon, just open the file below and comment the icon that you don't want:

\fckeditor\fckconfig.js

I am still looking on how to utilized SAVE Icon on the toolbar under asp.net

No Body
A: 

You are supposed to write your own code, because the editor is not supposed to know how and where you save things. Here's my strategy on PHPBB-based MFO forums:

I disabled the save button and added ajaxAutoSave mod which does both saving and autosaving. When a user saves (or autosaves) what he is working on, I save it in a special place on server. Each user has one, and he can get it back by going to "My latest draft" under Home menu. So, if your browser crashed in the middle of writing a long post, you can get it back. But, you cannot have more than one text saved.

Your strategy can be very different, it really depends on what you are doing.

buti-oxa
A: 

Dynamic saving provided here, but I can't seem to make it work yet.

sjlewis