-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to toggle between CKEditor and textarea in a facelet(.xhtml) file.
I have used the same code in a jsp file and it works fine. But in .xhtml file its not doing the toggle between ckeditor and plain editor.It loads ckeditor both the times.Can anyone please let me know what am I missing.
Code…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
A while ago I downloaded the latest version (3.1) of the CKEditor text editor.
The directory name was ckeditor and I deleted the ckeditor/_source and ckeditor/_samples sub-directories, then I referenced the ckeditor.js file in my html pages, like so :
<script type="text/javascript" src="ckeditor/ckeditor…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I was trying to integrate ckeditor to my symfony2 project so that some of the textarea will have the ckeditor html editor. I brought the ckeditor on my required textarea by calling the class="ckeditor" in my form. The issue that I am facing now is that when I use the ckeditor the submit button of…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi
I want to use Ckeditor for Entering text and I want to save that text in Database,but when I Write the text in editor and I want to save it in database this error appeared .
A potentially dangerous Request.Form value was detected from the client (editor1="
this is my code :
M.Body = editor1…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using CKEditor in my web app, and I'm at a loss as to how to get the contents of the editor with HTML formatting.
var objEditor = CKEDITOR.instances["sectionTextArea"];
var q = objEditor.getData();
This will get me the text entered in CKEditor, without any markup.
However,
var q = objEditor…
>>> More