fckeditor

CKEditor display on top of all the content flex

半腔热情 提交于 2019-12-11 14:34:46
问题 I have found the lot and got one editor which i use in my project (Flex Web application). I have used CKEditor from this link. <ckeditor:CKEditor id="editor1" width="100%" height="100%"> <ckeditor:htmlText> <![CDATA[ ]]> </ckeditor:htmlText> </ckeditor:CKEditor> It's working ok in my project. But, there is one issue i am facing. Problem: I have one alert message and Custom popup container. I want to display that both on top of the editor. But it hide behind the editor. I want to display on

Having problems getting images to display within FCKEditor within ASP.NET website

寵の児 提交于 2019-12-11 08:09:45
问题 I'm having a problem with the FCKEditor html editor for ASP.NET in that when trying to insert an image within the editor and then clicking "browse server" in the Image Properties dialog I get an "page cannot be found" error. I want to get it to show all the files in the "images" folder. The website is set up as follows:- \ Root - \ asp.net standard folders etc... - \ Images - \ FCKEditor - contains all the javascript etc.. - Default.aspx - this contains the FCKEditor Control I have tried

How do I set the FCKEditor to be readonly?

我与影子孤独终老i 提交于 2019-12-11 00:26:31
问题 I am using FCKEditor ASP.NET control 2.65 in my WebForms application. How can I set it to be readonly (preferably from the serverside)? I am not seeing either Enabled or Readonly properties. Am I missing something really simple? 回答1: Wrap the control in your own control. Publish an Enabled property on your control. Publish a Value property. Manage the state for both of these properties yourself. If Enabled = true at the time of render, then delegate to the underlying FCKEditor control.

webpage css overrides ckeditor 3 style

半世苍凉 提交于 2019-12-10 11:17:49
问题 I've got a page where I load screen.css which contains an evil rule, which for various reasons I cannot remove or modify: a { background: red !important; } I use CKEditor 3.x on the same page and the problem is that, no matter which style I choose (v2, kama, office2003), the buttons of the editor look red. FCKeditor 2.x didn't have an issue with this because it was creating an iframe to host the whole editor instance. Thus the evil css snippet didn't even exist in its page. The new CKEditor 3

How to set configuration or server to upload image in FCKeditor based on ASP.NET MVC?

余生颓废 提交于 2019-12-09 21:29:44
问题 I am using FCKeditor as web editor in my asp.net mvc beta application. I inserted FCKeditor in Create.aspx page and every function of FCKeditors works well except image file uploading from my local pc :( I changed some configuration as FCKeditor's document Here's I changed, fckconfig.js var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py config.ascx Enabled = true; I made folder

How to customize fonts in CKEditor?

浪子不回头ぞ 提交于 2019-12-08 16:56:57
问题 Does anyone know how to customize (add or remove) fonts in the CKEditor 3.x series? I looked all over and I can't figure out how. Supposedly there is a /plugin/fonts folder but it does not exist in 3.5+ of CKEditor. 回答1: The fonts in the font menu are configured using CKEDITOR.config.font_names: <static> {String} CKEDITOR.config.font_names The list of fonts names to be displayed in the Font combo in the toolbar. [...] So all you need to do is set font_names in your configuration to the font

Capitalize first letter of sentence in CKeditor

空扰寡人 提交于 2019-12-08 12:17:40
问题 I wish to capitalize the first letter of a sentence, on-the-fly, as the user types the text in a CKEditor content instance. The strategy consists in catching each keystroke and try to replace it when necessary, that is for instance, when the inserted character follows a dot and a space. I'm fine with catching the event, but can't find a way to parse characters surrounding the caret position: var instance = CKEDITOR.instances.htmlarea instance.document.getBody().on('keyup', function(event) {

disable adding of <p></p> tags in fckeditor

孤人 提交于 2019-12-07 11:55:22
问题 how to disable automatic adding of <p></p> tags in Fckeditor. When i try to get any post data from fckeditor, it gives me the data wrapped in how do i remove/disable those <p></p> Thanks in advance for any suggestions and reply 回答1: Too late, but will help others reaching this page via search engines, like I found it. <?php include_once('fckeditor/fckeditor.php'); $oFCKeditor = new FCKeditor('description'); $oFCKeditor->BasePath = '/fckeditor/'; $oFCKeditor->Value = 'some text'; $oFCKeditor-

CKEditor how to create custom styles drop down?

末鹿安然 提交于 2019-12-06 11:07:34
Is there any way to create custom Styles drop down in Ckeditor? Screenshot: As can be seen in screenshot, I want to be able to create a new dropdown (like Styles dropdown) to contain these yellow and green markers and possibly others that I want. I have seen docs but they only show how to create custom buttons to add to toolbar but I dont know how to add a custom dropdown with styles to toolbar. Any help will be greatly appreciated. Thanks for your help I believe you will need to create a plugin to make this work. An example can be found here: http://ckeditor.com/forums/CKEditor-3.x/Custom

webpage css overrides ckeditor 3 style

馋奶兔 提交于 2019-12-06 08:24:02
I've got a page where I load screen.css which contains an evil rule, which for various reasons I cannot remove or modify: a { background: red !important; } I use CKEditor 3.x on the same page and the problem is that, no matter which style I choose (v2, kama, office2003), the buttons of the editor look red. FCKeditor 2.x didn't have an issue with this because it was creating an iframe to host the whole editor instance. Thus the evil css snippet didn't even exist in its page. The new CKEditor 3.x though uses divs and tables to host the editor wrapper and buttons and then an iframe just for the