ckeditor

How to properly destroy CKeditor instance.

I am running CKeditor 3.4 on a pretty simple page. I am having a problem (sometimes) where when I call document.main_form.submit(), it will not send along the contents of the textarea. After some reading, it sounds like CKeditor is not destroying properly. I tried to manually destroy it before I save the form, but wasn't able to call it....

How to integrate CKFinder with CKEditor?

How do you integrate CKFinder with the new CKEditor. It is very underdocumented on the website, and i am literally getting nowhere. A step by step guide would be greatly appreciate as, as far as i am aware.. this is the only free/good image upload solution for a wysiwyg editor that is any good. Can someone confirm? Thanks ...

CKEditor remove spaces/tabs from between headings

Hello! CKEditor does this whenever I add a heading tag: <h2> Mai 2010</h2> How can I remove the new line and spaces after the h2 starting tag, please? ...

How to correctly implement CKEditor v3 into ASP.net?

I'm not so much into JavaScript, so I'm not able to use the new CKEditor right away. Until now I was using the FCKEditor ASP.net wrapper, which works fine for me. Unfortunatly the official wrapper is not for version 3. I've googled http://syrinxckeditor.codeplex.com/ but the project is over a year old and seems like a beta to me. Is th...

How exactly DO you integrate ckeditor with Paperclip so it can upload image files?

How do you get http://github.com/galetahub/rails-ckeditor working so you can upload image files? I don't think I'll use the s3 storage... any help would be appreciated. ...

ASP.NET MVC2 Rich Text Editor

Hello everyone, basically, my question is pretty much similar and has been asked numerous times. Which WYSIWYG editor is better now that Telerik has released their MVC editor, would it be wise to purchase the entire suite instead? Selections: TinyMCE CKEditor Telerik MVC Editor ...

CKEditor: How to stop angle brackets from converting to HTML entities

Our site is using tags like <# TAGNAME #> but CKEditor converts < and > to &lt and &gt which breaks these tags for use in our software. I've discovered this option: config.protectedSource.push( /<#[\s\S]*##>/g ); which seems to stop the conversion if the data is saved from Source mode, but in WYSIWYG mode I can't find a way to stop the ...

Object placeholder in CKEditor

I'm trying to write a little ckEditor plugin to implement the flv-player. After the code is implemented in the content area the CKEDitor just place a placeholder if there is a embed tag in the object tag, but I don't want to use embed tag. I made a dirty hack (wich does not update the params width and height on resize) in ckEdiotr.js but...

CKeditor skins, good ones and how to build them?

Hi, I was wondering if there is a resource of CKeditor skins anywhere? Like a list of downloadble skins. The default one is a little meh. Also where are the doc's for creating your own skin? Thanks! ...

CKEditor to Send Emails with ASP.NET [vb] - Issues with Special Characters

I have a standard HTML page with an CKEditor on it wrapped in a form. The form submits (POSTS) to Send_Emails.aspx Send_Emails.aspx reads the content of the FCKEditor into a variable Dim html As String = Request.Form("ck_content") Then it sends an email. Problem Characters such as: Â -> this seems to show as a special character fo...

CKEditor Compact HTML code

Hello! Is there anyway to tell CKEditor to not indent the code it generates from user input? It would be great if it would just add no extra spaces or tabs. Thank you. ...

CKEDITOR.replace() is hiding the textarea that I want converted

I'm using Javascript to create a textarea that I want to be a ckeditor. My code is something like var html = '<textarea name="text"></textarea>'; $('#mydiv').append(html); var textareas = document.getElementsByTagName('textarea'); // Could be more than one textarea for (i = 0; i<textareas.lenght; i++) { var textarea = texta...

ckEditor: no p and no br

Hello, I want to allow basic <strong>, <em> and lists with ckeditor. However I want NO <br> and no paragraph tags, as I nlb2 my content and I want it to be essentially naked. Via google I found that I could do: $(function() { $('#description').ckeditor({ enterMode : CKEDITOR.ENTER_BR, shiftEnterMode: CKEDITOR.ENTE...

Help integrating the FCKEditor's filemanager into ckeditor

Hi, I hope someone can help me. I'm building an ASP.NET website and in the process of integrating the CKEditor into it, to use it as my content editor. I also need to be able to upload images to display within the content and I have found some instructions to do this (http://www.mixedwaves.com/2010/02/integrating-fckeditor-filemanager-...

CKEDITOR: how to install on simple form?

Hey, I am creating a simple form (title - content - submit), and I want to mix CKEDITOR in the content area. How do i do it? the form looks like this: <form> <input type="text" /> <textarea></textarea> - **here I want the CKEDITOR** <input type="submit" /> </form> very simple.. thank you! ...

CKEditor edit settings using the PHP implementation

Hello! How can I do this: CKEDITOR.replace( 'editor1', { on : { instanceReady : function( ev ) { // Output paragraphs as Text. this.dataProcessor.writer.setRules( 'p', { indent : false, breakBeforeOpen : true, breakAfterOpen : false, breakBefo...

CKeditor - Custom tags and symbols inside the editorwindow.

When you insert a flash object into the CKeditor the editor window will show this symbol: I was wondering. Is it possible to do something similar when users inserts this tag into the editor (using regex {formbuilder=(\d+)}/ ): {formbuilder=2} If so, could someone please explain how to? :) UPDATE: I've been looking at the PageBreak...

CKEditor.insertHtml changing contents of div from whatever into an img

var content = window.frames[i].document.getElementById("embed").value; /* content is: '<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/mmYVsGa-uZ0?fs=1&amp;amp;hl=en_US"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embe...

Using variables and functions in an object literal

Hi, I am doing my head in trying to get the ckeip jquery plugin to parse the id of my textarea to my php file. The plugin is activated by the class name of my textarea: $('.ckeip_edit').ckeip({ And then data is passed to my php file with an object literal: data: { name1 : 'value1', name2 : 'value2' }, I need to use the ...

How to override BOLD on the toolbar in ckEditor

When ever i click on B in ckEditor, i want to pop a msgbox like alert('Good Morning') . How to do this? ...