ckeditor

Free image uploader with CKEditor

Hi everybody, I'm using CKEditor to allow the users sending nice rich texts. The problem is that, with the very new version, we must couple it with CKFinder (which requires a license key if deployed) to allow the users "exploring the server" or downloading the images. Is there another free plugin than CKFinder? Should I go back to the F...

Ckeditor Scayt Question - Always Enabled

How can i enable sacyt when first loading ckeditor? ...

Getting selected text win CKEditor Plugin

I have made a plugin for CKEditor, but it relies on the currently selected text. In FF and Chrome I can use: var selectedText = editor.getSelection().getNative(); but this doesnt work in IE and I only get [object Object] Any suggestions? ...

How to prevent script attact in ASP.net MVC project which uses CKEditor?

In my Asp.net MVC 1.0 application I want to use CKEditor as my Rich Text Editor. But if I want to use this editor i have to Disable Request Validation . After doing this if I want to display the whole html content directly I can't use HTML.Encode() becuase I want to render the real html content generated from Editor. So how can we prev...

CKEditor PlugIn, Simple PlugIn Ability

I'm interested in creating a plugin that does this simple task: Steps 1. User selects some text by highlighting 2. user clicks the plug-in 3. CKEDITOR, wraps the selected text with a tag with some class and/or ID. Can anyone help with this? I've been playing with CKEDITOR.htmlWriter but haven't even been able to get that started: http...

CKEDITOR removing only asp.net tags problem

In controller level i used [ValidateInput(false)] and ValidateRequest="false" in the view. Everything is fine except CKEDITOR removing <% %> tags. Is there any other configuration i am missing? ...

CKEditor RichCombo

Does anybody know how to disable the default CKEditor behavior that changes the RichCombo label on click? I want the label to remain untouched regardless of the user selection. ...

flowplayer classid problems in firefox

Flash video player not showing in firefox when using classid attribute in object tag. I have to used the classid attribute or my CKEditor won't let me embed the video without it. ...

CKEditor inside jQuery Dialog, how do I build it?

So, I'm working with CKEditor and jQuery, trying to build a pop-out editor. Below is what I have coded so far, and I can't seem to get it working the way I want it to. Basically, click the 'Edit' link, dialog box pops up, with the content to edit loaded into the CKEditor. Also, not required, but helpful if you can suggest how to do it. ...

Get formatted HTML from CKEditor

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.getHTML(); will return a null value....

Can LGPL licenses be used in our proprietary systems?

We want to use either the FCK/CKeditor or the TinyMCE editor in our CRM application. We charge the customer use of the CRM system which is bespoke to use and them. I noticed both the editors have GPL and LGPL licenses. However CKEditor has a Closed License too in addition to the LGPL. My questions are: 1) Although we don't sell our cod...

Is there a CKEditor PHP drop-in for editing a site (psuedo cms)?

I like CKEditor and my server uses PHP. I want to use CKEditor to edit the static HTML pages. Is there something that I can drop in that will give me a file browser and let me click a file and edit in CKEditor and save? Image upload would be nice but optional. ...

CKEditor Modal Issues.

So I'm using CKeditor inside of a jQueryUI dialog. The issue I'm having is when you click on a button like the "link" button, the modal that pops up, won't let me type anything into it's inputs. I can change the values of the pull downs, I can drag the modal around the screen, and I can click on the buttons. But when I attempt to type in...

Looking for exhaustive list of commands and a way to set style

Hi All, I'm currently working with CKEditor (http://ckeditor.com/). I'm looking for: 1) an exhaustive list of commands available by default via 'execCommand'. 2) a mechanism by which to set styles (as in the same way the FONT and SIZE combo boxes do it). I saw the function called 'setStyle' in the documentation, however it seems ...

How to prevent CKEditor translating accented letters to their HMTL codes?

I'd like to configure CKEditor to save accented letters as they are, and don't change them to their HTML equivalent, since I'm working work with UTF8 anyway. Where and what do I need to set to achieve this? Example: Current: entered: áéíóúöőüű source: <p>&aacute;&eacute;&iacute;&oacute;&uacute;&ouml;ő&uuml;ű</p> Wished for: entered:...

In which order is model binding and validation done in ASP.NET MVC 2?

I am using ASP.NET MVC 2, and am using a view-model per view approach. I am also using Automapper to map properties from my domain-model to the view-model. Take this example view-model (with Required data annotation attributes for validation purposes): public class BlogPost_ViewModel { public int Id { get; set; } [Required] ...

Make content 100% height with scrollbar

I am using CKEditor (http://ckeditor.com) and I've created my own custom file browser... Problem is, when you open the filebrowser, it opens it in a new popup window and has no scrollbars. I submitted a support ticket 2 weeks ago to find out how to add the scrollbars and no answer. I can't find what to edit in the code either... So wha...

Ways to access a JavaScript Object's Property in IE6

I have a JavaScript object with some properties. Lets say: var haystack = { foo: {value: "fooooo"}, bar: {value: "baaaaa"} }; Now, I want to access one of those properties, but I don't know which one. Luckily, this variable does: var needle = "foo"; In modern browsers I seem to be able to do the following and it works: haystac...

Ck editor file uploading - getting internal server error 500

Hi, We have a web site with domain http://209.59.154.150/~phnxaudi/,. To develop this website we have used Joomla framework, and we have used Ckeditor in it, for uploading files(pdf, images etc ). Also we have installed Ckeditor in the server. But for some reason we are getting an internal 500 server error. Could anyone please help us ...

� in my html after purify

I have a database the I am rebuilding the table structure was crap so I'm porting some of the data from one table to another. This data appears to have been copy-pasted from MSO product so as I'm getting the data I clean it up with htmlpurifier and some str_replace in php. Here is the clean function: function clean_html($html) { ...