At least from my too-brief observation, if you don't include a "real" Submit button, it won't save. I'd love to figure out how to get around this; my form is pretty simple, and removing the Submit button (or changing its type to "hidden") disables the Save button.
Edit Update for posterity: Okay - I didn't catch the stupidity of my code. If you place the editor DIV inside the form, then the Save icon works Just Fine, Thanks without another submit button.
It works !
http://dev.fckeditor.net/ticket/1104
http://dev.fckeditor.net/ticket/863
Re: SAVE BUTTON DOESNT WORKs!
At least from my too-brief observation, if you don't include a "real" Submit button, it won't save. I'd love to figure out how to get around this; my form is pretty simple, and removing the Submit button (or changing its type to "hidden") disables the Save button.
<form action="___MOD_PATH___/EditScreen/edit" method="post"> <script type="text/javascript"> <!-- var sBasePath = "/fckeditor/"; function FCKeditor_OnComplete( editorInstance ) { editorInstance.SetHTML(window.opener.preLoad); } var oFCKeditor = new FCKeditor( 'xhtmloutput' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Height = 560; oFCKeditor.Config['FullPage'] = true ; oFCKeditor.Config['ShowBorders'] = true ; oFCKeditor.Create() ; //--> </script> <br /> <input type="submit" name="submit" value="Submit" /> </form>Edit Update for posterity: Okay - I didn't catch the stupidity of my code. If you place the editor DIV inside the form, then the Save icon works Just Fine, Thanks without another submit button.