Does anyone know who to resolve form submission problems with the FCKeditor is in Source mode? I have no trouble submitting the form that the editor sits on when in editing mode, but if I try to submit the form in source mode, the form submission process returns an error.
(Using ColdFusion, by the way). Any ideas?
(Using ColdFusion, by the way). Any ideas?
RE: Submitting form while in Source mode
If we try to "save" while the editor is in source view, it flashes back to the wysiwyg view (with the changes still showing) then seems to submit, then refresh the entire page ... but now any changes made are gone.
We are also using ColdFusion, but this got set up with the standard iFrame implementation, not the cfModule tag.
Any help out there?
Kristi
RE: Submitting form while in Source mode
We're using Cach/CSP, even though I think the above has nothing to do with server-side processing.
RE: Submitting form while in Source mode
But I'd love to hear the solution if you get one!
Thanks in advance ...
RE: Submitting form while in Source mode
/* ...change 'foo' to the name of your editor... */
if(FCKeditorAPI.__Instances.foo.EditMode == FCK_EDITMODE_SOURCE){ FCKeditorAPI.__Instances.foo.SwitchEditMode();
}
RE: Submitting form while in Source mode
First, is that supposed to be for v2.0 or for v1.8?
I'm on 1.8. I'm saying that because I'm getting messages like "FCKeditorAPI does not exist" or some such. It may just be in the wrong scope or something?
Also, how do I know what the editor name is - I assume it's the "instanceName"? And do I only replace foo, as in "FCKeditorAPI.__Instances.myInstanceName.EditMode"
Still needing ... HELP! thanks again
Kristi
RE: Submitting form while in Source mode
there is a simple solution to this problem in the bugs section - "v1.6 Submitting while in source mode" (https://sourceforge.net/tracker/index.p ... tid=543653)
btw: v1.6 is the latest non beta version (there is no v1.8 and probably never will be). Looking forward to v2 beta 2 next week.