ckeditor

CKEditor not loading

I have the following problem I have a page with a content div where pages are loaded in via AJAX and menu items called STEP 1 , STEP 2 etc NOw everytime I click on a step a new page is being loaded in the content div. One of the pages contains CKEditor When clicking on the link that contains CKEditor, CKEditor loads perfectly, when I ...

Adding custom styles to ckeditor

I recently added CKEditor to my app, I'm new to CKEditor and I would like to include my own css style sheets within the editor so that I can select them within the editor. Ho do I accomplish this my code sofar looks like this <script type="text/javascript"> CKEDITOR.replace( 'editor1',{ uiColor : '#9AB8F3', ...

How to add data to CKEditor using JQuery

Everytime a page loads I need to load text into the CK Editor using JQuery, in order to get data from CK Editor I use var editor_data = CKEDITOR.instances['editor1'].getData(); now is there a similar function I could use to put the data back into the editor? I'm using ajax to set the data like this $.ajax({ type: "POST", url: ...

CKEDITOR, Image Upload (filebrowserUploadUrl)

Hello, I'm using CKEDITOR and would like to be able to allow users to upload and embed images in the Text Editor... The following JS is what loads the CKEDITOR: CKEDITOR.replace( 'meeting_notes', { startupFocus : true, toolbar : [ ['ajaxsave'], ['Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ]...

CKEditor 3.1: Issue with pasteBin in IE

Does anybody know how to stop document auto-scrolling caused by pasteBin in Internet Explorer? This does not happen with other browser because of the following code in clipboard plugin: if ( !CKEDITOR.env.ie && mode != 'html' ) { pastebin.setStyles( { position : 'absolute', left : '-1000px', // Position the b...

dsiplay text from ckeditor

when i display ckeditor text the html tags are also displayed. how can a i show only the text? i'm getting this: <p> &nbsp;</p> <ul style="list-style-type: none; list-style-image: none; list-style-position: outside;"> <li> Nurzahan Road,Dhaka</li> <li> West of Tajmahal Road</li> <li> Phone: 9110614</li> </ul> i want to show only this:...

CKEditor Customization

How can give browse for file option, in image picker instead of pointing to external link? Thanks in advance. ...

ckeditor doesn't show cursor in IE6/7/8?

The cursor won't show unless you start to type. This problem exists with the samples in its release. Is there a way to fix that? ...

While using the latest CKeditor (v.3.1), does anyone encounter a stray select box on the page where the ckeditor.js is included?

Hello, I'm using the CKEditor 3.1, and find that whereever there is a box on the page, the ckeditor causes a new empty select box to appear next to it (although it has not been applied to that specific element.) This seems to be a known issue : http://dev.fckeditor.net/ticket/4528 Has anyone been able to get around that? Is there any ...

Ckeditor when i add text the whole 'p' should be hilighted

When i write in a paragraph in ck editor i want it to highlight the whole of he current paragraph in different background. ...

ckeditor scrollIntoView to a div element within the editor

I have a navigation menu out side ckeditor and i want to navigate within the editor as all my element in editor have ids scrollIntoView how does this work any example will be good ...

How do I pass in config info to CKEditor using the jQuery adapter?

I'm using the latest CKeditor with jQuery adapter. I have successfully got it to work, and display. However, as I am completely new to CKeditor, how do I pass in config variables using the jQuery method? This is what I've got $( '#input-content' ).ckeditor('', { toolbar: 'basic' }); I think from what I've rea...

How do disable options from the Format menu in CKeditor?

In the Format select box, you can choose Heading 1, Heading 2 etc How can I disable some of those options? Is it also possible to rename them? I want to only allow Heading 2 and Heading 3, and if possible, rename them to Heading and Sub-Heading. I figured out how to rename them - in the language file. I edited the 'en-au.js' and then s...

Ckeditor only submits part of the content

I'm using ajax to gather the ckeditor data to be submitted. The problem is only the content before the first apostrophe is being submitted to the database. What could I be doing wrong? Edit: $date = strtotime($formData['date']); $article=mysql_real_escape_string($formData['article'],$DBconnect); $DBconnect=mysql_connect($dbVals['host...

JQuery UI Accordion Jumps with CKEditor

Hi everyone, I have an accordion working just fine, but once I include a CKEditor in it, everytime the accordion tries to show or hide that DIV, the accordion jumps a little funny. All other DIVS work just fine when I try to hide or show them. Jquery: 1.4.1 CKeditor: 3.1 Jquery UI: 1.8 Does anyone can point me in the right direction...

how to implement ckeditor in django.contrib.flatpages

can any one describe how to implement the ckeditor in django.contrib.flatpages... Thanks in advance ...

Maximizing / Resizing a dialog window in CKEDitor

I need to programmatically maximize / resize a CKEditor IFrame dialog (i.e. a CKEditor dialog with an "ok" and "cancel" button, and an iframe in it for the rest). I would need the dialog to stay centered on the screen. I can see only functions to resize and re-position the window, but to use those, I'd have to calculate the window dimen...

Ckeditor call function after newpage button on the toolbar is clicked

Ckeditor call function after newpage button on the toolbar is clicked ...

How To know if content of the ckeditor is changed

How To know if content of the ckeditor is changed. I need to call a function in javascript whenever the content of the ckeditor is changed. ...

Does anyone know of a spell checker plugin for ckeditor that uses aspell or a similar local service instead of spellchecker.net?

We are using CkEditor on our CMS product and does not want to use the built in spell checker from spellchecker.net. Does anyone know of other plugins, like e.g. the old FCKeditor plugin which used aspell serverside? ...