ckeditor

Issues installing CKeditor in Kohana (v2)

I'm attempting to install CKeditor on Kohana 2. I've dropped the ckeditor folder into libraries/ and put ckeditor.php alongside the ckeditor folder in libraries/. I'm trying to call ckeditor in my controller with the following: $this->ckeditor = new Ckeditor('FCKEDITOR1'); $this->ckeditor->BasePath = 'application/libraries/ckeditor/'; $...

ckeditor turn off enter key

I am trying to use ckeditor to edit single lines so I don't want users to be able to use the enter key. Does anyone know how to stop the enter key from being used? I tried $("#text").keypress(function(event){ alert(event.keyCode); }); But it didn't register. Thanks for any help. ...

photo gallery for CKEditor

I need to integrate a photo gallery to the CKEditor. I have a list of albums to be shown on the page. I need to have an custom icon in the CKEditor, which shows the list of albums on click of that. I need to have an option to select the album and show the album inside the page as like Galleria. I need to be able to show the gallery be...

How to set English(UK) as a default language in CKEditor 3.2.

How to set English(UK) as a default language in CKEditor 3.2. ...

ckeditor slow firefox

Hi people I have a ckeditor who is very (VERY) slow. Does anybody has this problem with a modest amount of html (just 16kb of data!!) I understand that an editor will get slow with 5mb of data but just 16kb is not so good. Does anybody have the same problems i am facing ? It is by the way not a particular browser issue i have tested...

HTML tag showing in bottom on ckeditor

I am using CKEditor 3.2 and I am facing the problem to hide the HTML tag which is showing in bottom on CKEditor. Is anybody have done this type of customization please share with me. ...

WSS 3.0 and CKEDITOR

Hi, I wonder if it is possible to integrate the CKEditor with sharepoint (WSS 3.0). Could it be possible with Visual Studio and deploying such as a Web Part?? Thanks. ...

ckEditor - mouseup event not firing after setData

So I have a ckEditor loaded through javascript, then on the instanceReady event I add another event for mouseup... this works well and dandy until i use the setText property (I used both the jquery way and the javascript way). After that is set, the mouseup event no longer triggers. Not even after I set the event handler again. Relevant...

How to configure ckeditor to not wrap content in <p> block?

I am using ckeditor on my website to make it easier for users to input HTML. However, the data I get back from ckeditor is wrapped in <p></p> blocks. (Which I don't want.) Is there some configuration setting that forces the editor to not wrap the text in anything? ...

CKEditor - Custom image browser

I'm currently developing a image browser in PHP and jQuery. I've managed to create a custom button plugin that opens my image browser in a new window (not a dialog box): CKEDITOR.plugins.add('imgbrowser', { init: function(editor) { var pluginName = 'imgbrowser'; editor.ui.addButton('Imgbrowser', { ...

How to get CKeditor to switch from Hspace and Vspace to proper CSS

I'm working with CKeditor, and for whatever reason, they included Hspace and Vspace in their UI. Convenient idea to allow users to manipulate their images like so, but those are way deprecated. Has anyone converted CKeditor's Hspace and Vspace to CSS, and know how to explain its conversion? I am a javascript novice.. ...

In Drupal 6, what's the quickest way to set up a WYSIWYG editor with code syntax highlighting and image upload?

I've seen numerous posts in random places about how to set up a WYSIWYG editor for Drupal 6. I've had luck with CKEditor and FCKEditor via the WYSIWYG Drupal module. All is well there, but I hit a breaking point when I try to add on syntax highlighting and image upload functionality. Any procedure I try is very cumbersome and ends up not...

How to override the handler for a button in ckeditor?

I would like to have a custom handler for the save button. How can I override the default command? ...

How to enable find and replace in CKEditor source mode

How can i enable the find and replace in source mode of CKEditor ...

CKeditor forcePasteAsPlainText not working in 3.2..

I've heard mixed responses about this working/not working . Mine happens to not work since I've upgraded. I upgraded rails by using a rails plugin that install rails 3.2. http://github.com/galetahub/rails-ckeditor For non-rails users, this basically just installs the latest version of CKeditor with an external yaml file for handling...

CKEditor and JQuery, Tooltip WYSIWYG vs. Source

We are trying to extend CKEditor via a "Comments" plugin, so that our content team can collaborate on writing content. Essentially, users can add comments to sections of selected markup (in the WYSIWYG editor) which manifest in the form of spans which enclose the markup selection. The comment is stored in the title attribute and displa...

How do you remove CKeditor's new image properties' photo upload, or browser server properties?

I just upgraded my ckEditor, and it's added a few options I don't want right now. Of them are to browse images from files rather than just include them as urls. How do I remove those options? ...

MVC client validation causing false errors

I'm hoping someone has run into something similar. A text input with text is triggering the client-side [Required] error message. I have the following included in the master: <script src="/Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script> <script src...

Help setting up image upload in CK Editor, using jquery config.

I have been trying to set up CKeditor with Perch CMS which requires using jQuery adapter option for initialising the CK Editor. Below is what I have as my configuration options for CK editor and my upload folder is "resources" which is located in my root folder e.g. domain.com/resources Although the upload tab appears under the image b...

CKEditor Freezes on jQuery UI Reorder

Hi Everyone: I am attempting to reorder a dynamically created list of CKEditors using the jQuery UI framework, but I am having an issue with the editor freeing. It worked perfectally when I was just using a <textarea>, but now, after the dragging action completes, it doesn't let the user write any text. This is the Javascript code: $...