Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


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:

  1. Open any CK Sample and insert a smiley or an image.
  1. Open Image Properties dialog apply Alignment & a link to the image.
  1. Open Image Properties dialog again

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 Olek Nowodziński Bug Normal CKEditor 4.4.2 UI : Skins
Description
  • "Browse" button has wrong top margin.
  • Combobox has cursor:pointer over an arrow and borders.
  • Specialchars table has cells of different widths.
  • Dialog buttons and selects has 24px height, while textfields 25px
  • "Close" button background is not centered. The button has no "hover" effect.
#11758 scayt â Bug Normal General
Description

Hello, sorry for my description but i'm french.

  • bug found on the mode demo and my website only with google chrome.
  • if scayt actived, i writte one bad word, i select this and apply the button Bold, i do two enter, I writte a space with one word.

I'm configured in UTF-8 (server, bd, php) but A€< reg in my BD mysql.

In clear, when scayt active it del &nbsp; and replace by a space if found an orthographe error, see on the last line:

<p><strong>dfssdqfsqdfsdq</strong></p>

<p>&nbsp;</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
  • Copy some japanese characters that has japanese spaces (double byte white spaces)
  • Open CKEditor in FireFox
  • Paste the content from step 1

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>&nbsp</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 &amp; to simple & Piotr Jasiun Bug Normal CKEditor 4.4.1 General
Description

Steps to reproduce:

  1. Open MathJax sample, open Math dialog and paste below:
    \begin{equation*} f(n) = \begin{cases} 0 &amp; n = 0\\ 1 &amp; n = 1\\ f(n-1) + f(n-2) &amp; \text{otherwise} \end{cases} \end{equation*}
    
  2. Switch to source, wysiwyg, source.

Result: You will see that &amp; got converted to simple &.

I haven't noticed any difference in final formula results but &amp; is definitely more correct than simple '&'.

#11780 Filter removes all classes/styles/attributes when some ACR allows all and some DACR uses wildcard Piotrek Koszuliński Bug Normal CKEditor 4.4.0 General
Description
  1. Setup editor with settings like:
    allowedContent: 'p[*]',
    disallowedContent: 'p[on*]'
    
  2. Load: <p data-x="1" onx="1">foo</p>
  3. Both attributes are lost when data-x should be preserved.
#11781 The codesnippetgeshi documentation is broken - colorize.php does not exist Marek Lewandowski 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 CKEDITOR.ajax.post attribute from 'application/json' to null

#11783 Link in image caption is taken as link which wraps image Olek Nowodziński 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
  1. Open enterkey.html CKEditor.
  2. Set enter mode to BR.
  3. Set forceEnterMode to true.
  4. Click bulleted/numbered list icon.
  5. Enter first line of text.
  6. Press enter key.
  7. Enter second line of text.

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. Piotr Jasiun Bug Normal CKEditor 4.4.1 General
Description
  1. Open code snippet sample.
  2. Open edit dialog for code snippet with undefined language.
  3. Change language to PHP (or whatever).

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:

http://jsfiddle.net/eEsG4/

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:

http://jsfiddle.net/yMTD5/2/

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: ` <p>&nbsp;</p>

<header> <h2>Bus Stop Location</h2> </header> `

After backspace: ` <p><strong style="color:rgb(62, 62, 62); font-weight:700; line-height:1.85em">Bus Stop Location</strong></p> `

It's a little strange, because ACF is working with rules: ` config.allowedContent = 'script(*)[*]{*}; *(*); td th[colspan]{border,border-width,vertical-align,width}; table[align, cellpadding, cellspacing, border]{border,border-width,width,margin}; img[alt,!src, border, title, contenteditable]{width,height,float,margin,margin-left,margin-right,margin-top,margin-bottom,border-width}; span iframe embed object param form input select textarea[*]; article{display}; div sup sub header footer section article span table tr td th ol li p h1 h2 h3 h4 h5{font-weight,text-align,text-decoration}; a[*]{font-weight,text-decoration}; *[id]; *[contenteditable,data-animspeedid,data-autostartid,data-openonclickid,data-pictheightid,data-showcontrolid,data-showtitleid,data-slideshowid,data-speedid,data-transitiontypeid]; b i u div blockquote strong hr th em ol ul;'; `

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 Piotr Jasiun Bug Normal CKEditor 4.4.1 General
Description
  1. Open replacebycode sample.
  2. Click styles drop down without focus editor.
  3. Drop down opens but button is "off".

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
  1. Open Replace By Code sample.
  2. Open Text color panel.
  3. Click on "More colors".

You see MS Paint-like dialog.

  1. Open UI Color Picker sample.
  2. Open UI Color Picker 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
  1. Load editor with content

<h1>Apollo 11</h1>

  1. Click "Replace" button in toolbar
  2. Type "Artur 11" in "Replace with" field
  3. Click "Replace all"
  4. Click "Close" button in dialog
  5. Select word "Artur" in header by double-click
  6. Click "Replace" button in toolbar
  7. Type some word in "Replace with"
  8. Click "Replace" button
  9. click "Close"

OR

  1. Load editor with content

hello world world

  1. Click "Replace" button in toolbar
  2. Type space in field "Find what"
  3. Click "Replace all"
  4. Click "Close"

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 Piotrek Koszuliński Bug Normal CKEditor 4.4.1 General
Description
  1. Open replacebycode sample.
  2. Place caret at the beginning or end of some table cell.
  3. Insert pagebreak.

Table is totally split. Reproduced on IE11 and Chrome.

Second TC:

  1. Open image2 sample.
  2. Insert table.
  3. Try to insert captioned image inside table cell (note: caret must be at the end or beginning of td).

The same - table is destroyed.

#11799 Custom color in More Colors is lost Bug Normal General
Description
  1. Open Replace By Code sample.
  2. Select some text.
  3. Open "Text color" panel.
  4. Click on "More colors".
  5. Type "#ff1234" in the text field.
  6. Click "OK".

Color changed, that is good.

  1. Open "More colors" again.

Result: Text field is empty.

#11801 It is not possible to create a link to anchor on Image2 Olek Nowodziński Bug Normal CKEditor 4.4.1 General
Description

Tested on Chrome.

  1. Open New Image sample.
  2. Select an image.
  3. Click link button.
  4. Change type of the link to "Link to anchor in the text".

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 Piotr Jasiun Task Normal CKEditor 4.4.1 General
#11809 Use indentation by spaces in code snippet sample Artur Delura 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 Piotr Jasiun Bug Normal CKEditor 4.4.1 General
Description
  1. Open codesnippet sample.
  2. Create snippet with <!--Foo--> content.
  3. Copy it.
  4. Paste it.
  5. Results:
    • Chrome: OK.
    • FF, IE: snippet contains: {cke_protected_1}.

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
  1. Open sample:

http://presets.ckeditor.dev/4.4.0/full-all/ckeditor/samples/plugins/stylesheetparser/stylesheetparser.html

  1. Type: ABCD in editor
  2. Set big font size so everything will be better visible
  3. Select ABC
  4. Set style span.markYellow to selection
  5. Select BCD
  6. Set style span.markGreen to selection
  7. Select C
  8. Set style span.markYellow to selection

Actual result: C is still green

#11813 [Image2] Link is lost when copy&paste captioned image or undo + duplicated resize handle Olek Nowodziński Bug Normal CKEditor 4.4.1 General
Description
  1. Open image2 sample.
  2. Link the image.
  3. Copy and paste it.

Result:

  • All browsers - there's no link physically. Context menu says that it can be edited, but only because it was preserved in widget's data object.
  • IEs (checked IE11) - there are two resize handles.
#11814 Image2's context menu always contains "edit link" option Olek Nowodziński Bug Normal CKEditor 4.4.1 General
Description
  1. Open image2 sample.
  2. Right-click image.
  3. There's an "edit link" option even though image is not linked yet.
#11815 Inline style "marker" does not apply in inline editor Bug Normal General
Description
  1. Open sample: http://presets.ckeditor.dev/4.4.0/full-all/ckeditor/samples/inlinebycode.html
  2. Select some text
  3. Set inline style: "marker" to selected text

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
  1. Open link dialog.
  2. Open "Target" tab.
  3. Select <popup window>

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

  1. Open editor with no content
  2. Type some word
  3. Select world by double-click
  4. Hit Ctrl + L, to create link tag from text
  5. From "Link type" drop down menu in dialog box select "Link to anchor in the text"

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 Olek Nowodziński Bug Normal CKEditor 4.4.1 General
Description
  1. Set the following HTML
    <p>f<a id="x" name="x">o</a>o</p>
    
  2. Double-click the anchor.

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 Piotr Jasiun Bug Normal CKEditor 4.4.1 General
Description
  1. Open table-resize sample.
  2. Add some empty lines so the scrollbar will show.
  3. Drag last pillar and move it so the mouse will be over the scrollbar.

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.

https://connect.microsoft.com/IE/feedback/details/852760/ie11-anchor-node-becomes-just-text-node-in-content-editable-when-hitting-backspace-with-caret-right-after-link-tag

  1. Open CKEditor sample
  2. Put caret right after some anchor tag
  3. Press backspace

Actual result: Anchor node becomes just text node.

#11827 [IE8] Widget styles break inline editor Bug Normal General
Description
  1. Open Widget dev sample (plugins/widget/dev/widgetstyles.html).

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 Artur Delura 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:

deleted: vendor/assets/javascripts/ckeditor/plugins/autogrow/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/contextmenu/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/floatpanel/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/font/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/format/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/indent/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/indentblock/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/indentlist/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/justify/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/lineutils/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/listblock/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/magicline/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/menu/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/panel/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/pastefromword/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/removeformat/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/richcombo/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/sourcearea/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/table/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/tabletools/plugin.js deleted: vendor/assets/javascripts/ckeditor/plugins/widget/plugin.js

#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
  1. Open sample http://presets.ckeditor.dev/4.4.0/full-all/ckeditor/samples/plugins/tableresize/tableresize.html
  2. Select table caption "A sample table"
  3. Set alignment to left or right

Actual result: http://dev.ckeditor.com/raw-attachment/ticket/11833/usun.PNG

#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 Piotrek Koszuliński 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:

  1. Navigate to http://ckeditor.com/demo (using Internet Explorer 9)
  2. Switch to Source mode
  3. Click into the textarea
  4. Drag the resize handle in the bottom right corner
  5. Text cursor jumps out of the textarea
  6. Type some characters
  7. New text will appear under the area with different style

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:

  • Bulgaria
  • Greek
  • Japanese
  • Korean
  • Latvian
  • Norwegian
  • Protugese
  • Romanian
  • Slovenian
  • Serbian
  • Chinese(Simplified, HongKong, Traditional)
#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 Marek Lewandowski Bug Normal CKEditor 4.4.1 General
Description
  1. Open ajax sample
  2. Open console tab in developer tools and paste:
    CKEDITOR.instances.editor1.insertElement( CKEDITOR.instances.editor1.document.createElement( 'hr' ) );
    

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 Piotrek Koszuliński 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;">
		&lt;h1&gt;Lorem Ipsum...&lt;/h1&gt;
		&lt;p&gt;Lorem ipsum dolor...&lt;/p&gt;
		&lt;p&gt;Ut wisi enim ad minim...&lt;/p&gt;
		&lt;p&gt;Ut wisi enim ad minim...&lt;/p&gt;
	</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:

  1. CKEditor demo
  2. enter a couple of words
  3. highlight all of the text and change the color(eg. Red)
  4. then select a word or two and change them to another color(eg. Orange)
  5. notice the text is changed to blue- and the highlighting is removed
#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(&lt;&gt;) after transferred by ckeditor Bug Normal Accessibility
Description

1.the version of my ckeditor is ckeditor_4.3.4_full;
2.when I put some angle brackets(&lt;&gt;) in textarea, the ckeditor cannot parse it if there are not a blank space around it.

example:
(1) nothing happened in ckeditor.
<textarea name="editor1" id="editor1">
<p>&lt;hello!&gt;</p>
</textarea>

(2)will be showed correctly.(notice the space around hello!)
<textarea name="editor1" id="editor1">
<p>&lt; hello! &gt;</p>
</textarea>

#11856 jQuery adapter should thrown an issue if CKEditor or jQuery are not loaded Artur Delura 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 ==============================

/

  • @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
  • For licensing, see LICENSE.html or http://ckeditor.com/license */

CKEDITOR.editorConfig = function( config ) {

%REMOVE_START% The configuration options below are needed when running CKEditor from source files. config.plugins = 'dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,templates,menu,contextmenu,div,resize,toolbar,elementspath,enterkey,entities,popup,filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,font,forms,format,horizontalrule,htmlwriter,iframe,wysiwygarea,image,indent,indentblock,indentlist,smiley,justify,menubutton,language,link,list,liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastefromword,preview,print,removeformat,save,selectall,showblocks,showborders,sourcearea,specialchar,scayt,stylescombo,tab,table,tabletools,undo,wsc'; config.skin = 'moono'; config.extraPlugins = 'xmltemplates'; config.extraPlugins = 'xml'; config.extraPlugins = 'ajax'; config.templates_files = xml:fcktemplates.xml?; config.templates_files = file:///C:/TestEditor/plugins/xmltemplates/sample/fcktemplates.xml?; config.templates_files = [‘xml : C:/TestEditor/plugins/xmltemplates/sample/fcktemplates.xml’]'; %REMOVE_END%

Define changes to default configuration here. For example: config.language = 'fr'; config.uiColor = '#AADC6E';

};

==============HTML==================== <!DOCTYPE html> <html>

<head>

<title>A Simple Page with CKEditor</title> <!-- Make sure the path to CKEditor is correct. --> <script src="ckeditor.js"></script>

</head> <body>

<form>

<textarea name="editor1" id="editor1" rows="10" cols="80">

This is my textarea to be replaced with CKEditor.

</textarea> <script>

Replace the <textarea id="editor1"> with a CKEditor instance, using default configuration. CKEDITOR.replace( 'editor1' );

</script>

</form>

</body>

</html>

Regards, Digvijay Chauhan

#11859 Code snippet sample cannot rely on sourcedialog Artur Delura 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 Olek Nowodziński Bug Normal CKEditor 4.4.1 General
Description

It's a follow-up of #9998, which covers a single case.


Example 1

  1. Set data
    <p>foo</p>
    <p>^bar</p>
    
  2. Backspace.
  3. <p>foo<span style="line-height:1.6">bar</span></p>
  4. Expected:
    <p>foo^bar</p>
    

Example 2

  1. Set data
    <h1>foo</h1>
    <p>^bar</p>
    
  2. Backspace.
  3. <h1>foo<span style="font-size:13px; line-height:1.6">bar</span></h1>
  4. Expected:
    <h1>foo^bar</h1>
    
#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) {

sb = new System.Text.StringBuilder("["); for (int i = 100; i <= 200; i += 10)

sb.AppendFormat("{{name:'line-height: {0}%', element:'p', styles:{{'line-height':'{0}%'}}}},", i);

sb.AppendFormat("]"); c.StylesSet = sb.ToString();

}

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
  1. Check out 4.4.0 tag.
  2. Run dt/core/htmldataprocessor.html?name=test-xss---video-with-incorrect-source-onerror-17 in FF28.
  3. It's green.
  4. Do the same in FF29.
  5. It's red.
  6. An error is thrown
    an error occurred while executing regular expression htmldataprocessor.js:897
    

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,

I am using CKEditor in my website to handle word document, In that i want to upload image to server and load in editor, But I could not able to found FileUpload control, But it is available in the demo site you are having.Is there any solution for that.

Regards, Kavi

#11880 [IE8-9] Linked image2 has a too thick border Bug Normal CKEditor 4.4.1 General
Description

It seems that adding border: none to a>img styles fixes this.

#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
http://ckeditor.com/addon/zoom
http://ckeditor.com/addon/coops-cursors
etc....

#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:

  • Open any demo page
  • Create a new list (numbered or bullets it doesn't matter)
  • Create a new empty list item
  • Change the list item format to any format (h1, normal, etc...)
  • Press Enter Key.

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:

  1. enter some text in the editor
  2. open the search and replace dialog over the toolbar
  3. switch to the register "Ersetzen"
  4. enter a letter to replace and the replacement letter
  5. click on the button "Alle ersetzen"

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 Artur Delura Bug Normal CKEditor 4.5.0 Beta General
Description

At the moment, there's no simple way to save editor dimensions (those passed to editor.resize()) when user resizes the editor. It also means that there's no way to restore them, i.e. if user re-visits the page.

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,

I want to browse all image from image properties dialog generated from image button in ck-editor in asp.net.and i also want to know how can i add a custom control in image properties window .

#11909 Parameter to prevent creating snapshots on editor#setData Marek Lewandowski New Feature Normal CKEditor 4.4.2 General
Description

Editor setData method now generates undo snapshot (Please see: #5217).

Right after the release we got two questions from users that were benefiting from editor.setData('') not generating snapShots.
Their request is that setData should have extra parameter that blocks snapShot execution what in result can block change event and leave dirty flag set to false.

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 Olek Nowodziński Bug Normal CKEditor 4.4.2 General
Description

Reported in http://ckeditor.com/comment/131832#comment-131832 by Frank Müller:

In the WYSIWIG view I can see the image, so this shows me that the editor properly combines my "config.baseHref" with "images/large/10061_713.jpg" and calls the server to get the image.

What I found out from reading the code is, that image2 popup loads the image from the server to determine width & height of the image. What I observed is that the "image2" plugin seems not to use "baseHref" to load the image from server. I was expecting that image2 combines ""baseHref" with the relative URL (the one I typed into the "URL" input field).


wwalc: I was able to confirm this, at least in Firefox and Chrome.

Steps to reproduce, assuming that the image is located in /path/to/images/file.jpg:

  • Set config.baseHref to /path/to/
  • In image dialog type URL: images/file.jpg
  • Press tab key so that the width/height value was calculated
  • Result in image dialog: width/height are calculated properly.
  • Result in image2 dialog: width/height are not set at all.
#11911 [PR#98] Setting of the "dir" attribute in the preloaded lang JS case Marek Lewandowski 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 CKEDITOR.lang object, it will not set CKEDITOR.lang[ '<langId>' ].dir property.

  1. open AJAX sample with CKEditor (i.e. samples/ajax.html)
  2. execute following code in console:
    CKEDITOR.lang[ CKEDITOR.lang.detect() ] = { common: {} }
    
  3. Click "Create Editor" button to init first CKE instance
  4. execute following code in console
    CKEDITOR.lang[ CKEDITOR.lang.detect() ].dir
    

Expected result:
This statement should return a string: "ltr" (or "rtl" in case of using rtl lang)

Current result:
Variable is not assigned: undefined

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:

  1. Go to http://ckeditor.com/demo#inline
  2. Click the top right Lorem ipsum text so the toolbar shows
  3. Delete all the content
  4. Enable SCAYT
  5. Click outside the field so the toolbar goes away
  6. Click inside the field again so the toolbar appears
  7. Start typing and misspell something like so: "Hi there, how arre you doing? I am doing..."
  8. When the spell check notices the misspelled arre the cursor will jump to it and whatever you were typing will now be inserted in the middle of the sentence.

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:

  1. Create a new table with default options, except choose Headers: Both.
  2. Fill in a few rows with fake data.
  3. Right click table and choose Table Properties.
  4. Under Headers, choose "First Column Only"

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:

  1. Navigate to http://www.ckeditor.com/demo in IE8
  2. Open dev tools
  3. Type the following sequence:
    editor = CKEDITOR.instances.editor1
    container = editor.getSelection().getRanges()[0].startContainer
    container.getUniqueId()
    

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 Piotrek Koszuliński Bug Normal CKEditor 4.4.1 General
Description

#11811 revealed a problem in code snippet plugin.

When, during upcast, code is read from the <code> element and set in data.code it is not decoded, so data.code contains e.g. &lt; when user should see <. We need to decode the source code, so data.code contains always the exact content which user entered in code snippet dialog.

Note: See TracQuery for help on using queries.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy