Custom Query
Results (9701 - 9800 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#11756 | CHROME: Applying alignment & link to an image removing all properties of image | Bug | Normal | General | ||
Description |
To reproduce the defect:
Issue: All fields on Image Properties dialog are empty But if you switch to HTML Source and back all the values are present |
|||||
#11757 | Imperfections in moono ui styles | Bug | Normal | CKEditor 4.4.2 | UI : Skins | |
Description |
|
|||||
#11758 | scayt â | Bug | Normal | General | ||
Description |
Hello, sorry for my description but i'm french.
I'm configured in UTF-8 (server, bd, php) but A€< reg in my BD mysql. In clear, when scayt active it del and replace by a space if found an orthographe error, see on the last line: <p><strong>dfssdqfsqdfsdq</strong></p> <p> </p> <p><strong> sdfdsqfsqdfsdqfsqdf</strong></p> |
|||||
#11760 | Quick table insertion feature | New Feature | Normal | UI : Toolbar | ||
Description |
I've started working on it: https://rawgithub.com/danyaPostfactum/ckeditor-dev/quicktable/plugins/tableresize/samples/tableresize.html I would like to hear what do ckeditor developers think. This also confirms http://dev.ckeditor.com/ticket/11759 |
|||||
#11763 | Incorect anchor targeting for pages with canonical path not same as base path. | Bug | Normal | General | ||
Description |
Bug related to «Link» plugin code and it's appearance. Use CKeditor in some CMS, where pages had canonical path differ from base path of page. In these cases anchor links (#anchor) set in editor points to wrong page and cause 404 error. As example (part of page code): <base href="http://site.com/somepath/" /> <link rel="canonical" href="http://site.com/somepath/news/page"> Trying to set up some #test anchor on such page I get anchor directs to incorrect «site.com/somepath/#test» rather than correct «site.com/somepath/news/page#test». So I must manually type full link address (news/page#test) to get working one anchor. |
|||||
#11764 | Double byte white space characters are skipped in Firefox during copy/paste | Bug | Normal | General | ||
Description |
Expected: CKEditor should preserve these white spaces Observed: CKEditor is trimming these and a normal white space is replaced |
|||||
#11766 | When closing an Internet Explorer (11) window containing a CKEditor, opened from an external source, a script error occurs | Bug | Normal | General | ||
Description |
When closing an Internet Explorer (11) window containing a CKEditor, opened from an external source, a script error can occur if the CKEditor is not yet fully loaded: Access is denied in: javascript:void(function(){document.open()%3B(function()%7Bfor(var%20a%3B%3B)try%7Ba%3Dwindow.parent.document.domain%3Bbreak%7Dcatch(c)%7Ba%3Da%3Fa.replace(%2F.%2B%3F(%3F%3A%5C.%7C%24)%2F%2C%22%22)%3Adocument.domain%3Bif(!a)break%3Bdocument.domain%3Da%7Dreturn!!a%7D)()%3Bdocument.close()%3B}()) It appears to be the 'document.open' that causes the problem. |
|||||
#11769 | youtube pluging french tranlation | Bug | Normal | General | ||
Description |
Issue with format of some characteres like é, (remplacing by �) |
|||||
#11774 | CKEditor changing code in every browser, adding <span> tags, adding random code | Bug | Normal | General | ||
Description |
Ever since we updated to the most recent version of DNN and changed to CKEditor, the HTML/CSS that was previously working just fine, has now been changed just from loading the new editor, once you view a draft now it does not show text where it added <span> tags and there are a bunch of <p> </p> tags where the <br /> tags used to be. And other random code added in, i have put in a service ticket to the people who installed CKEditor with the last update of DNN, and they have not yet found a solution, please help and thank you for your time. Kyle Roope Web Developer - Montana Department of Revenue 406 444 9534 kroope@… |
|||||
#11776 | Codemirror icons are missing in package generated by Editor Builder | Bug | Normal | General | ||
Description |
Codemirror icons folder is missing in the package generated by Editor Builder If you download codemirror from here http://ckeditor.com/addon/codemirror folders are included. http://ckeditor.com/builder Add "Codemirror" plugin Download When you run editor Codemirror png files will give 404 not found error on console |
|||||
#11777 | MathJax plugin converts & to simple & | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Steps to reproduce:
Result: You will see that & got converted to simple &. I haven't noticed any difference in final formula results but & is definitely more correct than simple '&'. |
|||||
#11780 | Filter removes all classes/styles/attributes when some ACR allows all and some DACR uses wildcard | Bug | Normal | CKEditor 4.4.0 | General | |
Description |
|
|||||
#11781 | The codesnippetgeshi documentation is broken - colorize.php does not exist | Bug | Normal | CKEditor 4.4.0 | Documentation & Samples | |
Description |
My idea is to include its source in the documentation for the plugin. The example is just few lines of code and IMO, the file should be kept outside CKEditor directory, to not cause problems during updating CKEditor. <?php include_once 'geshi/geshi.php'; $json_string = file_get_contents( 'php://input' ); $json_object = json_decode( $json_string ); $geshi = new GeSHi( $json_object->html, $json_object->lang ); echo $geshi->parse_code(); |
|||||
#11782 | Change POST request sent to backend in codesnippetgeshi | New Feature | Normal | General | ||
Description |
We should change the way of requesting backend for highlighted text. Currently it's send as a payload, and it's pretty much inconvenient to use at server side. Much easier and readable solution would be placing json-encoded object in under regular POST field. The source of issue are these lines in ckeditor-dev/plugins/codesnippetgeshi/plugin.js: var requestConfig = JSON.stringify( { lang: language, html: code } ); We should change it to: var requestConfig = 'json=' + JSON.stringify( { lang: language, html: code } );
And we should change |
|||||
#11783 | Link in image caption is taken as link which wraps image | Bug | Normal | CKEditor 4.4.0 | General | |
Description |
In image2 sample load: <figure class="image"><img alt="Saturn V" src="assets/image1.jpg" width="200" /> <figcaption>Roll out <a href="x">of Saturn V</a> on launch pad</figcaption> </figure> Kaboom! The issue is caused by widget.parts.link discovering the link inside figcaption. |
|||||
#11784 | forceEnterMode enabled, enter key does not work well inside lists | Bug | Normal | General | ||
Description |
Problem: The second line of text is not a new list item. <ol> <li>line1<br /> line2</li> </ol> Tested in FF, editor version 4.3.5, revision "a10440f" This issue might be related to http://dev.ckeditor.com/ticket/5465 |
|||||
#11785 | [IE9] Failures in dt/plugins/image2/link.html | Bug | Normal | CKEditor 4.4.0 | General | |
Description |
This is IE9 only. Fails in dev and perhaps in build too. |
|||||
#11788 | It is not possible to change language back to undefined in code snippet dialog. | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
You are not able to change it back to undefined. |
|||||
#11789 | CKEditor inline does not initialize properly in Chrome if the container element is initially hidden | Bug | Normal | General | ||
Description |
If the editor is inside a container element which is initially hidden, the editor appears disabled and the contents are not editable when you show the container. The bug is demonstrated in this fiddle: http://jsfiddle.net/jfuya/11/ Note that you can click inside the editor div and the ckeditor toolbar shows up, but all the buttons are grayed out, and you can't actually edit the contents. No JavaScript errors show up in the console. The issue appears to be Chrome only (tested also in Firefox and IE - both seem to work fine). I'm using Windows 7 (though I'm not sure it makes a difference). Using CKEDITOR.disableAutoInline does not work either, as demonstrated in this fiddle: However, it looks like the issue is isolated to the inline editor. This alternative fiddle uses the standard CKEditor, and it works fine in Chrome: You can easily run into this issue if the editor is inside a jQuery UI tab, or a collapsed panel of any sort. People having been using all sorts of hacks and workarounds for this, including delaying initialization of the editor until the container becomes visible, or destroying/recreating all inline editors. Here are some I found: http://ckeditor.com/forums/CKEditor/Solved-Chrome-Toolbar-buttons-grayed-out-for-INLINE-editor http://stackoverflow.com/questions/21202684/ckeditor-inline-editing-on-jquery-ui Apologies if this is a duplicate. I found some similar issues that are old and probably predate inline editing capabilities (#5956, #6174), but I wasn't able to find anything that's specific to the CKEditor 4 inline editor. |
|||||
#11790 | [Blink] Chrome - merging block + ACF | Bug | Normal | General | ||
Description |
Maybe it's something similar to [9998] bug, but merging blocks doesn't add span, but makes something different:
Before backspace:
<header>
<h2>Bus Stop Location</h2>
</header>
After backspace:
It's a little strange, because ACF is working with rules:
So even if Chromium bug [9998] - it's shouldn't happen because of ACF rules. |
|||||
#11793 | Drop down is not "on" when clicking it while editor is blurred | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Reproduced on Chrome and IE11, should be producible on all browsers. First bad commit git:094859c. |
|||||
#11796 | [UX] Two different dialog to pick a color | Bug | Normal | General | ||
Description |
You see MS Paint-like dialog.
You see Photoshop-like dialog. Two different dialog for exactly the same functionality. I understand that the second dialog is bigger and probably will not be seen by end user, but for developers, who are also a group of CKEditor users, in may be confusing. |
|||||
#11797 | [IE9-11] Double replace fire error in console | Bug | Normal | General | ||
Description |
OR
Actual result: Error in console SCRIPT5022: DOM Exception: INDEX_SIZE_ERR (1) ckeditor.js, line 379 character 513 |
|||||
#11798 | Inserting non-editable element inside a table cell breaks the table badly | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Table is totally split. Reproduced on IE11 and Chrome. Second TC:
The same - table is destroyed. |
|||||
#11799 | Custom color in More Colors is lost | Bug | Normal | General | ||
Description |
Color changed, that is good.
Result: Text field is empty. |
|||||
#11801 | It is not possible to create a link to anchor on Image2 | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Tested on Chrome.
Result: no anchors are displayed. This might be related to #11800, but it's not about creating anchor from image, it's about the link. And if this function is not supported yet then "Link to anchor in the text" type should not be enabled. |
|||||
#11804 | Making changes in Document Properties plugin does not reflect in history | Bug | Normal | Core : Undo & Redo | ||
Description |
When we change for example background color of document using document plugin, change in not saved in history, so we can't undo our changes. |
|||||
#11805 | Paste from word remove color style | Bug | Normal | General | ||
Description |
I reproduce this on demo editor. I have some text in open office in color, i copy it, then paste into "Paste from word" plugin. The pasted text lost its color Browser : Firefox 28 OS : windows 7 |
|||||
#11807 | Update jQuery used in tests and in the jQuery adapter sample | Task | Normal | CKEditor 4.4.1 | General | |
#11809 | Use indentation by spaces in code snippet sample | Task | Normal | CKEditor 4.4.1 | General | |
Description |
The 8-chars tab indent is ugly. Alternatively we can change pre's tab size in contents.css. |
|||||
#11811 | Widget's data are not encoded correctly when passed to attribute | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
That's because FF and IE do not encode "<" in attribute values. Chrome does this automatically. |
|||||
#11812 | Setting styles does not make effect | Bug | Normal | General | ||
Description |
Actual result: C is still green |
|||||
#11813 | [Image2] Link is lost when copy&paste captioned image or undo + duplicated resize handle | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Result:
|
|||||
#11814 | Image2's context menu always contains "edit link" option | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
|
|||||
#11815 | Inline style "marker" does not apply in inline editor | Bug | Normal | General | ||
Description |
Actual result: Selection is not marked. No style was applied. Some styles are missing in CSS file I guess. |
|||||
#11816 | Remove whole or part of Link Target popup | Bug | Normal | General | ||
Description |
This is pretty old part of the Editor, especially "Dependent (Netscape)" option. We should decide to remove this option since we do not support Netscape for a while or remove whole option and save some space since nobody use popups in XXI century. |
|||||
#11818 | No information displayed in link dialog box when no anchors available | Bug | Normal | General | ||
Description |
Browsers: All
Actual result: Because there are no other anchors in content, adequate information should be displayed as it happend in 4.3.4 version "No anchors available in the document". But in version 4.0.0 nothing is displayed. |
|||||
#11819 | empty output text array if any Tags used | Bug | Normal | General | ||
Description |
Hello! Thank you for such awesome web text editor! We are using it on our sites, but have some problems with namecheap.com hosting. Can we have some tech requirements for correct work of CKEditor, to tell them? Our problem: If we will place any tags in the text field on web-site located on this hosting - the output array is empty. We have created a special page for testing - http://www.ias-russia.com/test/ Thanks in advance! |
|||||
#11820 | Background is white blank when I try to add anchor link in IE10 | Bug | Normal | General | ||
Description |
Hi, I am using IE10 Actually I Integrated CKEditor 3.6.2 in my application. When I try to add anchor link in IE10,the background functionality goes to white color I have tried with X-UA-Compatible=IE=edge property but no use. Here the problem which I got not only with anchor link it is also have a problem with flash(All situations which is opened dialog(poopup) box) This functionality is working fine in other browsers even IE8 and IE9 Please go throgh the attached screen shots. |
|||||
#11822 | [Webkit] Anchors editing broken in some cases | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Expected: Existing anchor is edited. Actual: A new anchor is edited. git:b5acf14a92926 is the first bad commit. |
|||||
#11823 | [IE8] TableResize throws error over scrollbar | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Result: Error multiple times in the console: Object doesn't support this property or method First bad commit: git:4991411. I wasn't able to reproduce it on IE9, IE11 and Chrome. |
|||||
#11826 | [IE11] Anchor node becomes just text node in editor when hitting backspace with caret right after link tag | Bug | Normal | General | ||
Description |
It's a browser bug, but we can handle it in CKEditor.
Actual result: Anchor node becomes just text node. |
|||||
#11827 | [IE8] Widget styles break inline editor | Bug | Normal | General | ||
Description |
Boom! Error in console and inline editor does not work: Unexpected call to method or property access. element.js, line 211 character 4 |
|||||
#11830 | Builder Ignores Plugin | Bug | Normal | CKEditor 4.4.2 | Project : CKBuilder | |
Description |
Hi, I have a build-config.js that includes plugins like autogrow and sourcearea. However, when I run build.sh (locally or via the website) those plugins are not included. Here's a filtered git diff after the update:
|
|||||
#11831 | moonocolor has no color | Bug | Normal | General | ||
Description |
Hello: Today I used the CKEditor Builder web page to create the download I required of version 4.3.4 of CKEditor. I selected the Fill preset, with the default plugins and the Moono Color skin. I downloaded with the source and extracted all into my project. I built and deployed that project as a WAR file on my Web Logic server. The CKEditor UI diplays fine on my web page however there are no colors in the skin. Its as if it is using the moono skin instead of the moonocolor skin. Why would this be? Shouldn't some of the icons of the moonocolor have some color? Thank you. Gary |
|||||
#11833 | [Opera] Table not rendering correctly when set alignment to it | Bug | Normal | General | ||
Description |
|
|||||
#11834 | Bad behaviour when transforming autoclosed tags | Bug | Normal | General | ||
Description |
If you have a source with XML format (autoclosed tags), CKEditor is not transforming them right to HTML. Steps to reproduce: 1 - Go to the editor demo http://ckeditor.com/demo 2 - Click on source 3 - After "</h1>" write "<a id="tips"/>" 4 - Click on source again You will see that a link is created until the next <a> tag. I think the right behaviour should be transforming <a id="tips"/> to just <a id="tips"></a> |
|||||
#11838 | i want to add Video Resizer same as Image resizer can we do it? | New Feature | Normal | General | ||
Description |
i want to add vidoe resizer in ckfinder which is working same as ImageResizer can we add this type of plugin for video. |
|||||
#11839 | [IE9] Text cursor jumps out of source area on resize | Bug | Normal | CKEditor 4.4.1 | UI : Source View | |
Description |
We've found the text cursor to jump out of the source-mode textarea after resize. Then the user can enter text underneath the textbox. This affects Internet Explorer 9. Reproduction steps:
I found it to be related to an IE-specific resize workaround in CKEditor. On resize, the textarea is hidden for a moment but focus isn't restored after that. We've successfully fixed it in our in-house fork. |
|||||
#11841 | Attributes get lost after drop a anchor in ckeditor (chrome) | Bug | Normal | General | ||
Description |
When we drop a link in ckeditor all attributes get lost except href in chrome. |
|||||
#11844 | Color tool tip is displayed in english for non en-us language in TextColor plugin | Bug | Normal | UI : Toolbar | ||
Description |
Color tool tip is displayed in English for languages like Japanese, Greek, Korean etc in Text Color plugin. Steps to reproduce the bug Change the language of ckeditor to Japanese. Click on the Text Color plugin and mouse over on any color. Actual: The tooltip text of color is in english Expected: Tooltip text should be in the language selected for ckeditor The tooltip issue exists for following languages:
|
|||||
#11845 | Ckeditor Script time out on large amounts of data | Bug | Normal | General | ||
Description |
Hi... We are attempting to paste a table from Excel into a CKeditor RTF box. This box contains a large amount of data (when copied to MS Word the document is 45k with 8 pivot tables, one of whic is three pages long...and formatted text). When we copy a new pivot table from excel into the middle of the CKEditor RTF box, we get the 'A script on this page is causing your web browser to run slowly' error message. We get this message 4 times before the pivot table is successfully copied into the RTF box. When we attempt to paste the very same pivot table into a similar RTF box that contains no other data, the copy works fine. We are assuming that the amount of data in the first RTF box is the issue. Can you help? |
|||||
#11846 | Google Chrome hangs when CKEditor parses malformed HTML | Bug | Normal | General | ||
Description |
The same bug as http://dev.ckeditor.com/ticket/6340 Latest Chrome (34.0.1847.116), Mac OS X The tab hangs when the HTML is malformed, for example: <span id="sample" overflow="hidden" ;"="" style="font-size:8pt; font-weight:normal; font-style:normal; color:#808080; background:transparent">Text</span> |
|||||
#11847 | CKEditor 4.x for ASP.NET | Bug | Normal | Server : ASP.Net | ||
Description |
Hi, to support IE11 we need .Net .dll file for v4.x today we use the v3.6.4 and we have copy/paste issues in out product. thank's Ido |
|||||
#11848 | IE: Unable to get property 'checkReadOnly' of undefined or null reference | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
Error: Unable to get property 'checkReadOnly' of undefined or null reference This can be reproduced only in IE since CKEditor 4.3 |
|||||
#11849 | Can't add text after moving the cursor on iOS (Same issue as #10318) | Bug | Normal | General | ||
Description |
The issue is the same as mentioned here: http://dev.ckeditor.com/ticket/10318 However we are not using the same js file as mentioned in this article. Is there any other reasons we could be experiencing this problem? |
|||||
#11850 | applyToAll not set on fakeobject filter | Bug | Normal | CKEditor 4.4.1 | Core : Parser | |
Description |
Create a fake object. The result is an image node. Set contentEditable to "false" on this node. Switch to source mode. Expected: The source contains the original object. Actual: The source contains the fake <img> markup. |
|||||
#11851 | float inline editor | New Feature | Normal | General | ||
Description |
This source sets a news block right site and floated content left: <div style="width: 200px; float: right"> <h2>News</h2> <div class="news"> <h3>Lorem ipsum dolor 11.04.2014</h3> <div>Lorem ipsum dolor...</div> </div> <div class="news"> <h3>Vulputate velit... 04.04.2014</h3> <div>Duis autem vel eum...</div> </div> </div> <div class="content"> <h1>Lorem Ipsum...</h1> <p>Lorem ipsum dolor...</p> <p>Ut wisi enim ad minim...</p> <p>Ut wisi enim ad minim...</p> </div> When I open the content in an inline editor, the editor doesn't float around the news. Source with editor: <div style="width: 200px; float: right"> <h2>News</h2> <div class="news"> <h3>Lorem ipsum dolor 11.04.2014</h3> <div>Lorem ipsum dolor...</div> </div> <div class="news"> <h3>Vulputate velit... 04.04.2014</h3> <div>Duis autem vel eum...</div> </div> </div> <div class="content"> <textarea name="content_1" id="content_1" style="visibility: hidden; display: none;"> <h1>Lorem Ipsum...</h1> <p>Lorem ipsum dolor...</p> <p>Ut wisi enim ad minim...</p> <p>Ut wisi enim ad minim...</p> </textarea> <div id="cke_content_1" class="cke_2 cke cke_reset cke_chrome cke_editor_content_1 cke_ltr cke_browser_gecko" dir="ltr" role="application" aria-labelledby="cke_content_1_arialbl" lang="de"> <span id="cke_content_1_arialbl" class="cke_voice_label">WYSIWYG-Editor, content_1</span> <div class="cke_inner cke_reset" role="presentation"> <div style="height: auto;" id="cke_2_contents" class="cke_contents cke_reset" role="presentation"> <div aria-describedby="cke_486" title="WYSIWYG-Editor, content_1" aria-label="WYSIWYG-Editor, content_1" role="textbox" style="position: relative;" spellcheck="false" tabindex="0" class="cke_wysiwyg_div cke_reset cke_editable cke_editable_themed cke_contents_ltr cke_show_borders" hidefocus="true" contenteditable="true"> <h1>Lorem Ipsum...</h1> <p>Lorem ipsum dolor...</p> <p>Ut wisi enim ad minim...</p> <p>Ut wisi enim ad minim...</p> </div> <span id="cke_486" class="cke_voice_label">Drücken Sie ALT 0 für Hilfe</span> </div> </div> </div> <script type="text/javascript"> /* <![CDATA[ */ CKEDITOR.replace( 'content_1', { customConfig : 'myconfig.js', language : 'de', fullPage : false, startupFocus : true, extraPlugins : 'autogrow,divarea,sharedspace,docprops,magicline,showprotected,iframe,sourcedialog', removePlugins : 'maximize,resize,elementspath', toolbar : 'EditContent', autoGrow_minHeight : 30, autoGrow_bottomSpace : 10, autoGrow_onStartup : true, sharedSpaces : { top : 'MyToolbar' } }); /* ]]> */ </script> </div> I attach 2 screenshots. |
|||||
#11852 | improperly highlighting on changing text color | Bug | Normal | General | ||
Description |
When user changes the color of the text a couple of times - the text remains blue, but the highlighting is gone - the user's color selection is not displayed until you tap into the screen or send the message. This issue only occurs in IE. It works fine for some colors. steps to recreate:
|
|||||
#11854 | [IE8-11] Opening dialogs in IE within an IFrame cause the page to scroll up | Bug | Normal | UI : Dialogs | ||
Description |
When using CKEditor within a long iframe, clicking on the dialog causes the page to scroll up in all versions of IE (Tested on 8, 9 and 11). The same case works fine on the latest version of Chrome and Firefox. I'm attaching the files to replicate this issue if needed. |
|||||
#11855 | the problem of parsing angle brackets(<>) after transferred by ckeditor | Bug | Normal | Accessibility | ||
Description |
1.the version of my ckeditor is ckeditor_4.3.4_full;
example:
(2)will be showed correctly.(notice the space around hello!) |
|||||
#11856 | jQuery adapter should thrown an issue if CKEditor or jQuery are not loaded | Task | Normal | CKEditor 4.5.0 Beta | General | |
Description |
Now we silently fail when jQ is not loaded and throw meaningless error if CKEditor is not loaded. It would be worth being more communicative, but that means changing logic a little bit (in case of missing jQ), so this change should not be shipped in minor release. |
|||||
#11857 | ckeditor lose data and freeze after drop using jquery.sortable | Bug | Normal | General | ||
Description |
I'm using ckeditor inside sortable item in jquery.sortable http://johnny.github.io/jquery-sortable/, but when I complete the dragging event, on drop of the item, ckeditor lost data and freeze. Has anyone had the same issue and can suggest me a workaround? |
|||||
#11858 | Unable to load xml template on Editor | Task | Normal | General | ||
Description |
Hi CHEditor Team, I need your help on to load XML template on CKEditor version # (ckeditor_4.3.4_45ff4ed2c0e6). Problem: Unable to load xml template on Editor. I have tried all the possible combination as given on internet (http://ckeditor.com/forums/Plugins/XML-templates ) but did not find any progress. Please following Item those may help you to understand the problem. =========== Config.js ==============================
CKEDITOR.editorConfig = function( config ) {
}; ==============HTML==================== <!DOCTYPE html> <html>
</html> Regards, Digvijay Chauhan |
|||||
#11859 | Code snippet sample cannot rely on sourcedialog | Bug | Normal | CKEditor 4.4.1 | Documentation & Samples | |
Description |
Sample from package that contains codesnippet plugin but no sourcedialog throws an error because inline editor uses extraPlugins setting. |
|||||
#11860 | CK Editor Script Error while pasting content from a Word doc | Bug | Normal | General | ||
Description |
Hi, We are using CKEditor 4.3 and facing an issue. When we paste any content from a word document into a CK editor it throws script error - "TypeError: CKEDITOR.cleanWord is not a function". Please help us on this issue. Thanks Vinay |
|||||
#11861 | [Blink/Webkit] Span elements created while joining adjacent elements | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
It's a follow-up of #9998, which covers a single case. Example 1
Example 2
|
|||||
#11862 | IE11 - pressing enter causes screen to jump down | Bug | Normal | General | ||
Description |
I upgraded from 4.2 to 4.4 and noticed in IE11, when I press the enter key in IE11 the screen moves down. The cursor is still in the CKEditor. I attached screenshots. The first, I start in "Change Page Text", type something then press enter. The second screen shot shows the page jumped down. |
|||||
#11863 | Problem to drag and drop text | Bug | Normal | General | ||
Description |
I do have problems with the drag and drop... when I dispossessed text, the text look like it's dispossessed but ckeditor does not take into account(Like i did nothing), I have to put a space after the element and after that it took into account. I use the version 4 of the module and angularjs as programming langague |
|||||
#11866 | ctrl+A don't work if widget is the first element in content | Bug | Normal | UI : Widgets | ||
Description |
in this demo: http://ckeditor.com/demo#widgets when you move widget to the top, you can't select all content witch ctrl+a. In other situations work fine. |
|||||
#11867 | image browser | Bug | Normal | General | ||
Description |
image browser that uses pop up doesn't work! |
|||||
#11868 | Unable to save in WYSIWYG in CKEditor after upgrade WP 3.9 | Bug | Normal | General | ||
Description |
Hi, After the upgrade to WP 3.9 I can only save my work in a page in the HTML mode, when I try to save in the WYSIWYG mode the message appears if I want to stay on the page or want to leave it: This page is asking you to confirm that you want to leave - data you have entered may not be saved. It seems like a bug to me but I don't find any reports, am I the only one with this problem? I have CKEditor 4.0 installed. Looking forward to a solution! Frances |
|||||
#11869 | Unable to edit image in CKEditor after upgrade WP 3.9 | Bug | Normal | General | ||
Description |
An image placed in a page from the WP media library seems unable to add the alt text to inside CKEditor. Is it possible that this was possible before the upgrade to WP 3.9? At least it seems logic that right-click on the image > Edit at least has some response, as it is now there is no response at all. Bug in CKEditor in WP 3.9? Very much looking forward to a solution! Thank, Frances |
|||||
#11870 | CKEditor 4.3.4 and ASP.NET 3.6.4 | Bug | Normal | Server : ASP.Net | ||
Description |
Following https://dev.ckeditor.com/ticket/11847#no3, I would like to ask a question: in ver 3.6.4 i config the control in run time like this: public static void SetupCKEditor(CKEditor.NET.CKEditorControl c) {
} and it's work just fine ! when i update the client side to v4.3.4 (i delete the hole 'ckeditor' dictionary i copy the new one) i got this javascript error in win xp and IE8 (in other OS or browser no): Message: 'name' is null or not an object Line: 927 Char: 600 Code: 0 URI: http://bci1.or-bit.net/demo9/ckeditor/ckeditor.js?t=C6HH5UF |
|||||
#11871 | [FF] Htmldataprocessor test fails in FF29 | Bug | Normal | CKEditor 4.4.1 | Core : Parser | |
Description |
Yet another example of catastrophic backtracking in RegExp? |
|||||
#11872 | Allow chaining the after calling addClass | New Feature | Normal | CKEditor 4.4.1 | General | |
Description |
The http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-addClass should include a return this; for symmetry with removeClass and to follow the same pattern that other frameworks like jQuery that allows chaining calls to the element. |
|||||
#11874 | Reg: File upload control is missing in Image upload | Bug | Normal | General | ||
Description |
Hi,
Regards, Kavi |
|||||
#11880 | [IE8-9] Linked image2 has a too thick border | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
It seems that adding |
|||||
#11888 | logo repeated in Plugins repository | Bug | Normal | General | ||
Description |
The logo displayed at the plugins repository is missing for the background image a no-repeat and position 50% 50%
http://ckeditor.com/addon/confighelper |
|||||
#11889 | The element for isEditable is not working when set to false | Bug | Normal | General | ||
Description |
We are using the open source code for the newest version and the documentation on the site to create a read only widget does not work. Can anyone advise? |
|||||
#11897 | Enter key in an empty formatted list item, creates a new line instead of breaking the list | Bug | Normal | CKEditor 4.4.3 | General | |
Description |
This bug is very similar to bug #5376 but with a change. Reproduce:
Expected Result: The cursor should come out of the list and a new empty Paragraph should open Actual Result: A new paragraph is created in the <ul> list and the <li> still exist |
|||||
#11900 | German uppercase defect | Bug | Normal | UI : Language | ||
Description |
Steps until the error occurs:
Now an alert opens with the number of replaced items. Actual: The text X vorkommen ersetzt. Expected: The text X Vorkommen ersetzt. |
|||||
#11901 | Horizonal line is duplicated after undo (Chrome) | Bug | Normal | Core : Undo & Redo | ||
Description |
Create two paragraphs with a horizontal line in between, like this: <p>a</p> <hr /> <p>b</p> Position the cursor before the "b" Press "Backspace" twice Press "Undo" twice Expected: <p>a</p> <hr /> <p>b</p> Actual: <p>a</p> <hr /> <p>b</p> <hr /> <p>b</p> Tested with Chrome 34.0.1847.131 m |
|||||
#11905 | editor#resize event should pass dimensions in data | Bug | Normal | CKEditor 4.5.0 Beta | General | |
Description |
At the moment, there's no simple way to save editor dimensions (those passed to Following the question on SO. |
|||||
#11907 | FredCK:CKEditor not working in IE10 | Bug | Normal | Core : Editable | ||
Description |
hi, Am using FredCK version of CkEditor in my page and have IE10 as my browser. So in IE10 its not working but when am making compatibility mode of IE10 to true then its working. Please help to solve this issue. Thanks in advance Saurabh Pandey |
|||||
#11908 | I want to upload a image from image properties using browse in asp.net | Task | Normal | General | ||
Description |
Hi,
|
|||||
#11909 | Parameter to prevent creating snapshots on editor#setData | New Feature | Normal | CKEditor 4.4.2 | General | |
Description |
Editor
Right after the release we got two questions from users that were benefiting from Things like that can be easily worked around with below code, thus I would like to ask if there is anyone for whom below workarounds don't work and parameter is the only solution? var editor = CKEDITOR.replace( 'editor1', {}); editor.on('instanceReady', function(){ console.log('Before setData:'+editor.checkDirty()); editor.setData('',function(){ console.log('Inside setData before reset:'+editor.checkDirty()); editor.resetDirty(); console.log('Inside setData after reset:'+editor.checkDirty()); }); }); var editor = CKEDITOR.replace( 'editor1', {}); editor.on('instanceReady', function(){ editor.setData(''); }); editor.on('afterSetData', function(){ console.log('After setData before reset:'+editor.checkDirty()); editor.resetDirty(); console.log('After setData after reset:'+editor.checkDirty()); },null,null,100); |
|||||
#11910 | Image2 does not honor config.baseHref when trying to get image width/height | Bug | Normal | CKEditor 4.4.2 | General | |
Description |
Reported in http://ckeditor.com/comment/131832#comment-131832 by Frank Müller:
wwalc: I was able to confirm this, at least in Firefox and Chrome.
Steps to reproduce, assuming that the image is located in
|
|||||
#11911 | [PR#98] Setting of the "dir" attribute in the preloaded lang JS case | Bug | Normal | CKEditor 4.4.1 | UI : Language | |
Description |
GitHub user akashmohapatra created a pull request for following issue:
If language dictionary is predefined in
Expected result:
Current result: Pull request can be found at GitHub. |
|||||
#11912 | Custom Control in image properties | Task | Normal | General | ||
Description |
Please tell me in which file i have to change the dialog so that i can add a custom control in it .Version of ck-editor is 4.6.3 |
|||||
#11913 | Custom Control in image properties | Task | Normal | General | ||
Description |
Please tell me in which file i have to change the dialog so that i can add a custom control in it .Version of ck-editor is 4.6.3 |
|||||
#11915 | Cursor jumps when typing a misspelled word with INLINE editor and SCAYT enabled | Bug | Normal | CKEditor 4.4.4 | General | |
Description |
Browser: FF 28, Chrome 34 (Works correctly in IE9) OS: Win 7 Reproducible location: Demo site and nightly build Steps to reproduce:
This is a big problem because my users expect to have SCAYT enabled by default and therefore I cannot use inline mode at all as this issue is reproduced consistently. |
|||||
#11916 | Please consider different shortcut for Accessibility Help (not Alt-0) | New Feature | Normal | General | ||
Description |
ISSUE: On Macs, Alt-0 means Option-0. The Option key is often used to apply accents or access alternate forms of letters within a language. By selecting Alt-0 (Option-0), CKEditor is preventing users of some languages from writing efficiently within the editor. IMPACT: CKEditor 3.2+ REQUEST: Please select a different keyboard shortcut for the Accessibility Help option of CKEditor. MORE DETAILS: A language professor at our university complains that Option-0 is a critical accent in the Hebrew language on a Mac. Per the professor's complaint, "On a Mac, Option + anything shouldn't be a built-in hotkey, because Option + keystroke is how you get to accents, alternate forms of letters, etc. In my case, Option + Zero is the keymap for a critical mark in Hebrew, one that is used in practically every multi-syllable word. Yet I have to go to the Mac equivalent of the character map to get this absolutely indispensable mark because CKEditor has hotkeyed the accessibility instructions to Option+Zero. Any way to turn that OFF?" We have been told that we can't re-assign the Alt-0 (Option-0) shortcut within the CKEditor through the configuration options. Apparently, we can disable all keyboard shortcuts, but this would impact accessibility compliance for users that need navigation access through the keyboard. To address this issue, please consider either allowing an institution to select a different "Accessibility Help" keyboard shortcut or consider selecting a different shortcut for the editor to minimize impact on content authors using the tool. Perhaps members of the CKEditor community familiar with internationalization and accessibility keyboard shortcuts might identify a preferred shortcut for the tool that won't conflict with screen readers. Thank you for your time and consideration. |
|||||
#11917 | Getting < at the end of the paragraph in outlook | Bug | Normal | General | ||
Description |
Sample paragraph below: Orders issued on or after August must be made to xxx Private Limited.< The "<" below is the one coming in outlook but not shown in ckeditor. |
|||||
#11919 | name@domain.comundefined | Bug | Normal | Core : Editable | ||
Description |
With the configuration config.emailProtection = 'encode'; writes the CKeditor when IE when e-mail address should be changed in the link box in the "email": name@…. |
|||||
#11921 | Permission denied in IE8 | Bug | Normal | General | ||
Description |
I have included CKEditor in my application. Whenever I am loading the application it says "Permission Denied" in IE8. I checked it on Mozilla, safari and chrome where this issue is not reproducible. I have tried with the latest version as well but getting the same error message. Kindly look into it and let me know the solution. Its very important to me. |
|||||
#11922 | Table header are set wrong if they are changed from "Both" to "First Columns only" | Bug | Normal | Core : Tables | ||
Description |
Steps to reproduce:
I expect the first column of the first row to remain a TH, but it is changed to a TD. |
|||||
#11924 | Uncaught TypeError: Cannot read property 'hasAttribute' of undefined | Bug | Normal | General | ||
Description |
Hi, I'm working on a project and we are using CKEditor 4.3.2. I have a test where each question is displayed in a new html page. But when i switch from one page to another i get the error "Uncaught TypeError: Cannot read property 'hasAttribute' of undefined". I did some debug and i saw that this happens because the previous editor instance from the previous page (it has the same editor id) is still listening (although destroyed) to the "customConfigLoaded" event. So i guess it's catching the custom loaded config event in the new page. And at the line: a.readOnly = !(!c.readOnly && !(a.elementMode == CKEDITOR.ELEMENT_MODE_INLINE ? a.element.is("textarea") ? a.element.hasAttribute("disabled") : a.element.isReadOnly() : a.elementMode == CKEDITOR.ELEMENT_MODE_REPLACE && a.element.hasAttribute("disabled"))); a.element is null because the editor was destroyed and a.status is "destroyed". From what i could tell also, this listener is not removed in the removeAllListeners method, i see it's not part of the list of events to be removed. Is there any way i can solve this without modifying the ckeditor code ? I have tried a lot of things but nothing seems to work. Thanks, Catallin |
|||||
#11925 | Calling getUniqueId on a container fails in IE8 | Bug | Normal | General | ||
Description |
Calling getUniqueId method on elements seems to be failing in IE8 Steps to reproduce:
Result: An Object doesn't support this property or method error is thrown. Expected: No error to be thrown and the element unique id to be returned |
|||||
#11926 | Codesnippet does not decode HTML entities when loading source code to widget data | Bug | Normal | CKEditor 4.4.1 | General | |
Description |
#11811 revealed a problem in code snippet plugin.
When, during upcast, code is read from the |