Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (10001 - 10100 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#12280 CKeditor content is removed and freeze when switching between jquery dialogs Bug Normal General
Description

I use Jquery UI to manage some html dialog box on my webpage. In those dialog box i have some webforms using ckeditor. The issue is that the content of the CKEditor in dialog A disapears if I click on the dialog B (that basically comes to the top). If I clik back on dialog A, the CKEditor is still blank, and is no more editable.

I use jquery 1.8.2, jquery UI 1.10.3, and CKEditor 4.4.3

What can I do to make this working?

#12282 pressing enter appends a extra line in CKeditor. Bug Normal General
Description

Repro steps for undesirable behavior

1.) go to the end of the last line of text ckeditor.com/demo 2.) press enter

  1. notice the cursor moves down two lines (should only be one line)

What it should look like: the desired behavior can be seen when pressing shift enter instead of enter

1.) go to the end of the last line of text ckeditor.com/demo 2.) press SHIFT enter

  1. notice the cursor moves down ONE line
#12291 Context menu removes selection highlighting in Inline editor Bug Normal Core : Selection
Description

In Chrome (tested with v35) opening the contextmenu in an inline editor visually removes the selection highlighting as mentioned in ticket #9625.

This is was not replicable with either Firefox (v31) or IE 11.

#12295 Red test on master: mathjax-mock - test conflict with iframe plugin Piotr Jasiun Bug Normal CKEditor 4.5.0 Beta General
Description

Test is red on Chrome 36.0.1985.125 and Firefox 31.0, green on IE11.

Test is red because of changes in bender-ckeditor (benderjs-ckeditor t/12173).

#12296 Merge bender-ckeditor into main ckeditor repository Piotr Jasiun Task Normal CKEditor 4.4.4 General
Description

We need to merge benderjs-ckeditor repository into ckeditor-dev to the folder: tests/_benderjs/ckeditor.

Discussion in #12295.

#12298 IE11+Compat: Click bellow body puts selection at first line Piotrek Koszuliński Bug Normal CKEditor 4.4.4 Core : Selection
Description

With IE11 in compatibility mode:

  1. Load this HTML:
<p>Line 1</p>
<p>Line 2</p>
  1. Back to WYSIWYG mode, put the focus outside the editor.
  2. Click the empty area bellow the text in the editor (in other words, outside <body>)

In all browsers, including IE11, the selection goes to the end of "Line 2". In IE11+Compat, it goes to the beginning of "Line 1".

Clicking and dragging in that same empty space will enlarge the selection always at "Line 1" as well.

#12299 Not able to set readonly in IE Bug Normal Core : Read-only
Description

I am working on a angular C K Editor directive and I have a requirement which needs to enable or disable CK Editor dynamically depends on condition.Most of the browsers are supporting this feature except IE. Below is the code for enabling or disabling

CKEDITOR.on("instanceReady", function () {

CKEDITOR.setData(ngModel.$modelValue); if (attr.isReadOnly) {

CKEDITOR.setReadOnly(isReadOnly);

}

});

Please help on this.

Thanks, Raghav

#12300 Editor#change fired on first navigation key press after typing Artur Delura Bug Normal CKEditor 4.4.6 General
Description

TC:

  • Add editor#change listener to see when it's fired.
  • Start typing. Change is fired for every letter.
  • Press arrow key. Change is fired. It should not be.

Reproduced on all browsers.

Follow up of #11739 and #11611.

#12301 Accumulation of nested span (font size) tags for bulleted lists Bug Normal General
Description

Note: I saw several similar tickets, so I'm not sure if this is a duplicate.

When you create a bulleted list, type some text, change the font size, then hit Enter, Backspace, Enter, Backspace, etc. the editor creates nested span tags (for font-size style) which accumulate at a seemingly exponential rate.

We found this in our project, but can reproduce here: http://ckeditor.com/demo#full

  1. Go to: http://ckeditor.com/demo#full
  2. Delete all the contents of the editor pane (start with empty editor)
  3. Hit the bullet list button
  4. Type some text (e.g. "asdf")
  5. Change the font size to something else (e.g. 22)
  6. Hit ENTER
  7. Hit BACKSPACE
  8. Repeat the last two steps 5 or 6 times (enter, backspace, etc.)
  9. Notice at the bottom, you see an accumulation of span tags in the editor. Upon inspection, notice many nested span tags to set the font size.

For px font size, this doesn't cause a huge visible issue, but for em font size, it causes the cursor to quickly grow or shrink because of the accumulation of nested em font sizes.

#12302 Action buttons are not disabling in IE Bug Normal Core : Read-only
Description

This is the ref#12299 and I am attaching the code for it.

Below is code for this, <!doctype html> <html> <head>

<title>CkEditor</title>

</head> <body ng-app='myApp'>

<div ng-controller="MyCtrl">

<div ng-repeat="editor in editors">

<textarea id="{{editor.id}}"

data-ng-model="editor.content" value="{{editor.content}}" name="{{editor.name}}" style="width:670px !important" is-read-only="{{editor.isReadOnly}}" data-ck-editor></textarea>

<br />

</div>

</div>

</body> </html> <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.0.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular.min.js"></script> <script src="cdn.ckeditor.com/4.4.3/standard/ckeditor.js"></script> <script language="javascript">

var app = angular.module("myApp", []); app.controller('MyCtrl', function ($scope) {

$scope.option = true; $scope.editors = [

{

id: 'sample1', content: 'sample 1 content ENABLED', name: 'sample1', isReadOnly: false,

}, {

id: 'sample2', content: 'sample 2 content DISABLED', name: 'sample2', isReadOnly: true,

}

];

}).directive('ckEditor', [

function () {

return {

require: '?ngModel', link: function ($scope, elm, attr, ngModel) {

var selectedElement = elm[0]; if (selectedElement !== null && selectedElement !== undefined) {

var loadCk = function () {

ck.on('pasteState', function () {

$scope.$apply(function () {

ngModel.$setViewValue(ck.getData());

});

}); wait until the editor has done initializing ck.on("instanceReady", function () {

insert code to run after editor is ready ck.setData(ngModel.$modelValue); if (attr.isReadOnly) {

if (attr.isReadOnly === 'true')

ck.setReadOnly(true);

else

ck.setReadOnly(false);

}

}); ngModel.$render = function () {

ck.setData(ngModel.$modelValue); ck.focus();

};

}

if (attr.id)

elm[0].id = attr.id;

if (attr.name)

elm[0].name = attr.name;

if (attr.value) {

ngModel.$modelValue = attr.value;

} var ck = CKEDITOR.replace(elm[0]); loadCk();

}

}

};

}

]);

</script>

#12303 Action buttons are not disabling in IE Bug Normal Core : Read-only
Description

This ticket is opened against #12299.Please find attached html file

#12308 Regression in iterator after #12178 - iterator leaks Piotrek Koszuliński Bug Normal CKEditor 4.4.4 General
Description

http://tests.ckeditor.dev:1030/tests/plugins/list/list#test%20switch%20list%20type%20%28inside%20definition%20list%29

Fails on IE11 and FF.

First bad commit git:bf96388. Ticket: #12178.

#12309 Test test_getDocumentPosition in core.dom.element.element in unstable Artur Delura Bug Normal CKEditor 4.4.5 General
Description

http://tests.ckeditor.dev:1030/tests/core/dom/element/element#test_getDocumentPosition

On IE11 I've something like this: Expected: 350 (number) Actual: 351 (number)

We should add some acceptance error range.

#12310 Change event is fired once on arrow consequent to printable letter Bug Normal Core : Undo & Redo
Description

An extra change event will be fired when an arrow press is following a printable char.

  1. Open any sample with CKEditor (i.e. samples/replacebyclass.html)
  2. Add a change event listener, eg:
    CKEDITOR.instances.editor1.on( 'change', function( evt ) {
    	console.log( 'change', evt );
    } );
    
  3. Focus the editor, press f so f letter is inserted. Note that at this point we have one change event, which is correct.
  4. Press right arrow.

Expected result:
change event is being fired.

Current result:
No change event should be fired.

This is an regression, was not seen in 4.4.3.

additional info:

  1. Only one extra change event will be fired that way.
  2. Checked in FF, Chrome, IE8
#12311 Removeformat doesn't remove cite element Artur Delura Bug Normal CKEditor 4.4.5 General
Description

Create a cite element and try to remove it with Remove Format button.

  1. open any sample with CKEditor (i.e. samples/replacebyclass.html)
  2. use following source
    <p>foo <cite>bar</cite> baz</p>
    
  3. go back to wysiwyg mode and select all ( CTRL + A )
  4. use a Remove Format button

Expected result:
Cite element should be removed: <p>foo bar baz</p>

Current result:
Cite element remains: <p>foo <cite>bar</cite> baz</p>

additional info:

  1. Tested with FF and Chrome
#12313 p tags are incorrectly used when autoParagraph:false Bug Normal General
Description

steps to repro:

Using editor with autoParagraph:false (http://jsfiddle.net/qm9z1u8j/)

1) enter "abc" don't incl quotes 2) view source: --you see: abc 3) Turn off View Source 4) go to the end of abc and hit enter 5) view source: --you see: <p>abc</p> <p>&nbsp;</p> 6) turn off View Source 7) go to the end of the nbsp and backspace up to the "c" in the line above 5) view source: --you see: <p>abc</p>

I would expect to see abc instead of <p>abc</p> after step 5. In general if autoParagrah is off, I would not expect to see any p tags around a single line

#12315 Mention that disabling auto paragraphing is highly unrecommended; mark as deprecated Bug Normal CKEditor 4.4.5 General
Description

Based on #12313.

See comment:4.

#12317 Magicline problem with window scroll Bug Normal General
Description

Using inline editor, if window is scrolled horizontally, magicline is set too far right with the scroll amount.

#12318 Problem building oembed Bug Normal Project : CKBuilder
Description

When bundling oembed, there is a problem with including its button icon:

  • Icon is not bundled
  • Even if copying icon by hand in the plugin folder, the CSS generated for the button has background y position far away (should be 0)
#12319 Builder i s not packing 2013 theme properly Bug Normal Project : CKBuilder
Description

When selecting the Offie2013 theme, the bundle actually contains the default one, had to download and install by hand in which case it works like a charm.

#12320 'change' is fired when pressing arrow key for the first time after changes in the editor Bug Normal General
Description
  1. Open some sample.
  2. Type something (Change event fired).
  3. Press arrow key.

Actual result: Chagne event is fired.

This bug is related to: http://dev.ckeditor.com/ticket/11611 and is a regression (since 4.4.4) and is browser independent.

#12321 [IE] pressing backspace / delete does not fire editor#change Marek Lewandowski Bug Normal CKEditor 4.4.4 Core : Undo & Redo
Description
  1. open any sample with CKEditor (i.e. samples/replacebyclass.html)
  2. add an change listener using console:
    CKEDITOR.instances.editor1.on( 'change', function() { console.log( 'change event' ); } );
    
  3. click somewhere in the middle of the text
  4. press backspace

Expected result:
Change event should be fired / console log should appear.

Current result:
Change event is not fired.

additional info:

  1. tested in IE8 and IE9
#12324 [IE8] Undo steps not recorded when clicking below the text Piotrek Koszuliński Bug Normal CKEditor 4.4.5 Core : Undo & Redo
Description

Occurs when body doesn't fill entire html element.

  1. Open languages samples (because there's just one line of text).
  2. Click below the text and type.
  3. Click somewhere else below the text and type again.
  4. Undo.
  • Expected: only text typed in 3. should be undid.
  • Actual: all typed text has been undone.
#12325 [IE10] selection doesn't collapse on Shift + Left button Bug Normal General
Description

Browser: [IE10] Works fine on IE11. Since: 3.6.0

  1. Open editor with following content and caret position:
    <p>^Hello.</p>
    
  2. Press and hold Shift button.

  1. Press end button.

Whole text is selected.

  1. While keep holding Shift button press Left arrow button.

Actual result: Selection doesn't change.

Expected result: last character is not selected.

#12327 [IE 9...10] Error on removing image from editor. Marek Lewandowski Bug Normal CKEditor 4.4.4 General
Description

Browser: [IE 9...10] Since: 4.4.4 http://presets.ckeditor.dev/4.4.4/standard/ckeditor/samples/replacebyclass.html

  1. Open editor with following content:
    <h1><img src="assets/sample.jpg" />Apollo 11</h1>
    
  2. Apply follwoing selection:
    <h1>[<img src="assets/sample.jpg" />]Apollo 11</h1>
    
  3. Press backspace button to remove image.

Actual result: Error is throw in console:

SCRIPT5007: Unable to get value of the property 'equalsContent': object is null or undefined 
ckeditor.js, line 993 character 30
#12329 Link continues on new line when pressing enter. If CK is in enterMode = CKEDITOR.ENTER_BR. On FF only Bug Normal General
Description

Link continues on new line when pressing enter.
This behavior only appears when CK is in enterMode = CKEDITOR.ENTER_BR.

Affected Browser: Firefox only (With no add-ons loaded).

Reproduction Steps:

  1. Click insert new link button.
  2. Just insert some URL (test.org).
  3. Click ok.
  4. Deselect the link with 'right cursor' key.
  5. Press Enter.
  6. Insert some text.

The inserted text will be marked as link. (Tested on demo and nightly)

#12331 Issues In Ck-editor. Bug Normal General
Description

Hi ,

I am Using Ck-editor 3.6.4.I had created a simple html table in ck-editor 3.6.4 with 2 rows and 3 coloums.For 1st coloum name is srno and for 2nd name is sname.I save in Db.but again when i check the table by opening the Ck-editor, the size of table is shrink.

Please help in urgent basis.

#12332 Undo Manager should have lower listener priorities Artur Delura Task Normal CKEditor 4.4.5 Core : Undo & Redo
Description

This is a follow up of #12327.

Current implementation is really fragile to code execution order. If undo manager is initialised before some code that cancels keydown undo manager's listener will be executed, but if the order is opposite, then it won't.

The listeners should be added with low priorities (999), so they are always handled at the end - if nothing else handled them.

Changes in branch:t/12332.

#12333 [IE9-11] Preview shows blank page. Bug Normal General
Description
  1. Paste below code in source mode (into existing contents or as the only content - doesn't matter)
    <iframe width="560" height="315" src="//www.youtube.com/embed/blSl487coFg" frameborder="0" allowfullscreen></iframe>
    
  2. Switch to wysiwyg and press preview button.

Result: Preview is blank.

In IE10 I have this error being thrown: SCRIPT1009: Character expected '}'. about:blank line:1

Problem can be reproduced in IE9-11 on latest master (works fine in CKE 4.4.3)

#12335 Setting new bg color on existing one make disappear original one (after selection) Bug Normal General
Description

Found on IE10 (works well on Chrome)

Since: 4.2.1 (on previous versions impossible to reproduce, because selection has gone when trying apply backgound.

  1. Open editor with content:
    <p><span style="background-color:rgb(255, 240, 245)">together make better</span></p>
    
  2. Select word "make"
  3. Apply some background color.

Actual result: Original color is cleared for everything after selected word.

#12336 Multiple CKEditor instances in one page loading problem in Internet Explorer 8 and 9 versions. Bug Normal General
Description

Hi,

We have around 50 CkEditors in our Web Page, the web page is divided into two sections. Initially all the ckeditors are loaded in the right side section of the webpage and when selected anyone of the ckeditor from the right side of the page, then the selected ckeditor is moved to the left side of the page. The selection and moving to the left side of the page and constructing the ckeditors again when the page gets reloaded, this entire action is taking around 10 to 15 seconds of time to reload all the ckeditors. The ckeditors construction while reloading the page is taking more time (around 10 to 15 seconds) and this issue is occurring only in Internet Explorer 8 and 9 versions. Whereas in Chrome or Safari (also in Internet Explorer 10 & 11 versions) this entire action is taking around 3 to 5 seconds in reloading and constructing all the ckeditors.

Attached a screen capture of the web page for your reference.

The following are scripts details loading in the webpage:

<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> jquery-ui.css jquery-ui-1.8rc1.custom.css editor.css

prototype.js jquery-1.4.3.min.js jquery-ui.min.js jquery-1.4.1.min.js jquery-ui-1.8rc1.custom.min.js ckeditor.js config.js en.js

Any help would be appreciated.

#12337 [Blink][IE] Restoring first undo might contain unexpected selection. Bug Normal Core : Undo & Redo
Description

This issue has a slightly diffrent outcome in IE / Blink but has the same steps (and problem source I guess).

  1. Open any CKEditor inlineall.html sample.
  2. Hit tab key 4 times (to get focus to the right-hand side editor).
  3. Press single printable char key, eg. a
  4. Press ctrl + z to perform undo

Expected result:
Caret should be collapsed right before first word that's "Lorem"

Current result:
Opera: Caret lands before the first paragraph. So further typing will create new paragraph.

In case of IE caret lands more-less in the middle of text.

additional info:

  1. This is an regression introduced in 4.4.4.
  2. You're not able to reproduce this with mouse.
  3. You're not able to reproduce it when you'll press any printable or navigation key prior TC. So you're able to reproduce issue only in that particular sequence.
  4. Experienced in Opera, Chrome, IE8
#12338 CKEditor 4.4.4 has new, unoptimized images Artur Delura Bug Normal CKEditor 4.4.5 General
Description

plugins/magicline/icon-rtl.png is 3KB, could be 112 bytes

plugins/magicline/hidpi/icon-rtl.png is 3 KB, could be 148 bytes

#12340 Unable to create an inline widget with nested editable span Bug Normal UI : Widgets
Description

I am implementing a new widget which represents a link and allows user to enter link text and URL without any dialog. Its template looks as follows:

template:
    '<a href="" class="linkwidget"><span class="linkwidget-text">Content...</span>' +
    '<span class="linkwidget-info"> (<i class="icon-external-link"></i> <span class="linkwidget-url">http://</span>)</span>' +
    '</a>',

Definition of editables is as follows:

editables: {
    text: {
        selector: '.linkwidget-text',
        allowedContent: 'strong em'
    },
    url: {
        selector: '.linkwidget-url',
        allowedContent: ''
    }
},

Initialization of editables fail in widget.initEditable() because 'span' is not defined in CKEDITOR.dtd.$editable, i.e., following condition fails for 'span' elements:

editable.is( CKEDITOR.dtd.$editable )
#12341 Fixes after #12173 review. Piotr Jasiun Bug Normal CKEditor 4.5.0 Beta General
Description

Part of #11437. Related to #12173.

  • On editable#cut content should be deleted with lower priority (999). Currently it's hard to override cut data, because it's immediately gone.
  • initPasteDataTransfer has no documentation.
  • In initPasteDataTransfer and initDropDataTransfer you expect first argument to be what? Because docs says it's native event, when it's not.
  • I mentioned this during one of previous reviews and I noticed this again - we can't write conditional code based on repeating CKEDITOR.env.ie usage. This makes code hard to read and hard to maintain, because it's unclear what this condition means - why IE, why not other browsers, whether IE12, 13 too or not. You need to create meaningfull variables like dataTransferSetCustomDataSupport and use them. E.g. in pasteDataFromClipboard you created htmlAlwaysInDataTransfer - it's great, just make it global for this plugin and then create more of them.
  • CKEDITOR.DATA_TRANSFER_INTERNAL flags should start from 1 (1, 2, 3).

TC1 (Chrome,FF):

TC2 (IE8):

  • open http://ckeditor.dev/plugins/clipboard/dev/dnd.html
  • copy text from textarea
  • paste it... it's underlined :D
  • it happens only when pasting into the framed editor and it happens also when pasting using button in the toolbar (and allowing clipboard access)
  • and that happens because our pastebin doesn't grab data at all, but editor#paste is fired so... we access clipboard directly :|

Because this issue is not related to changes in #12173 (the same problem occurs on master branch) I moved it to the separate ticket: #12348.

#12342 CKEditor in IE 11 Enterprise Mode with Compatibility Mode not working Bug Normal General
Description

Trying the samples in IE 11 with Enterprise mode enabled. They do not display correctly. See attachment.

Tried it with 4.3.3, 4.4.3 and 4.4.4

Thanks.


Workaround: see comment:3.

#12354 Holding Backspace or Delete no longer generates undo snapshots every 25 characters Piotrek Koszuliński Bug Normal CKEditor 4.4.5 Core : Undo & Redo
Description

Steps to Reproduce

  1. Open the Nightly Demo Page
  2. Place your cursor in the document and hold the backspace or delete key until over 25 characters are deleted
  3. Undo

Expected Result: The last 25 deleted characters are restored to the document

Actual Result: All characters that were deleted are restored

#12355 Demo page doesn't load in Chrome on Android Bug Normal General
Description

I was testing CKEditor on different devices and found the demo page doesn't load in Chrome on any of the Android devices I tested.

Chrome version 36.0.1985.135, Sony xperia.

Also tested Samsung Galaxy and Samsung Note, same issue.

Demo page is currently using 4.4.4 (Standard) (revision 1ba5105)

Note from FAQ: CKEditor supports mobile versions of Safari (default browser on iPhone and iPad) and Chrome (available for Android and preinstalled on many Android devices) with minor issues related to platform limitations.

#12358 inline editor toolbar disappears when opening dialog with file element Bug Normal General
Description

inline editor toolbar disappears when opening dialog with file element

#12360 CKEditor in draggable element Bug Normal General
Description

There's a draggable element with CKEditor instance in it. Each time the element is dragged CKEditor instance is destroyed and then replaced via attach function.

The error occurs in IE'11 when dragging, it returns an error that the instance is already attached. It means that it wasn't deleted previously.

#12363 aspell spellchecking plugin not working in IE 9-11 versions in windows7 Bug Normal Server : Java
Description

I am using the apell plugin to spell check the words.Purposefully misspell some text and click the ABCcheck button. CKE responds with a

"This page cannot be displayed The window was not opened from another window."

In the IE 9-11 versions but it is working fine in IE8.

#12364 Capitalize the first letter Bug Normal General
Description

hey i am using CKEditor control in asp.net. all works good. but now i want to capitalize the first letter of every line.

eg. This is first line. This is second line. This is third line.

i have created a javascript function for it but when i am trying to capitalize the first letter through javascript fuction, i am unable to call the javascript function. i don't understand how can i call the javascript function in CKEditor Control.

i am looking for the way to solve this problem.

Please help me to solve the problem.

Thank you.

#12365 insertHtml adds unwanted div or span tag with contentEditable="false" Bug Normal General
Description

In a javascript function I execute : CKEDITOR.instances[_editor].insertHtml(html); where html is a String containing html code in form : <div><a href="..."><img src="..."></a></div>

The img tag is taken from the editor current selection, and the div and a tags are added.

Actually I'm adding a link to an image in the editor.

In some cases, additional div or span tags with attribute contentEditable="false", are added surrounding the inserted html.

The problem is that after this tags are added if I execute the javascript again the insertHtml will make no change in the editor(because of the contentEditable="false").

Note that I'm using image2 plugin

#12367 Bold, Italic, Underline, Strike, SubScript, SuperScript buttons don't work in Firefox Bug Normal UI : Spell Checker
Description

When I press this buttons nothing happens, they don't get selected as usual and also the changes are not reflected in the text selected.

So far I found only one place(only in an Email) where it happens, and only in Firefox.

#12375 CK editor toolbar not showing Bug Normal General
Description

Hi,

The CK editor toolbar isn't showing on my mac. On neighter of the browsers. I've tried Firefox, Chrome and Safari. I went to a friends house and on his laptop it was working...

I've tried desactivating all the plugins, didn't work either... :( :)

Any ideas? I'm using Book your travel team. www.gilita.com Thanks

#12377 Errors thrown in image plugin when removing htmlPreview from dialog definition Bug Normal CKEditor 4.4.5 General
Description

Based on: https://github.com/ckeditor/ckeditor-dev/pull/83

Use case: https://github.com/ckeditor/ckeditor-dev/pull/83#issuecomment-43258198

#12378 IE Quirks Mode: Unspecified Error when making a selection in the editor Bug Normal General
Description

There is an old bug http://dev.ckeditor.com/ticket/9034 fixed 2 years ago, that is reproducible with CKEditor 4.4.4. On IE9 with document mode Quirks, start to select from the beginning of the text and the error rises. I checked the code in version 3.6.5, the fix was in 'selection' plugin, just an try .. catch block around textRng.select(); at line 449. In the current version this code is in the core (file selection.js line 645), the try catch block is absent and error is reproducible again.

#12379 CKEditor 4.4.4 Full cannot used in google chrome Bug Normal Accessibility
Description

CKEditor 4.4.4 Full cannot used in google chrome,I got message Uncaught TypeError: Cannot read property 'ltr' of undefined

Browser: Google Chrome Version: 37.0.2062.102 m

#12381 [PR#110][iOS] Fix selection trouble in iOS Piotr Jasiun Bug Normal CKEditor 4.4.5 General
Description

Pull request #110

Environment: iOS6 and iOS7

A.

  1. Click on a disabled button
  2. Notice the cursor is blinking in the right place
  3. Input some text
  4. Notice text is not input

B.

  1. Create a table with the table plugin
  2. Cursor is blinking inside the newly created table
  3. Input some text
  4. Notice text is not input
#12385 Paste from word plugin - problem with numbered lists Bug Normal Plugin : Paste from Word
Description

The bug is reproducible under IE 11. When the user copies (even a single) line from a numbered list, like :

  1. First
  2. Second

the result we see inside the CK window is (CK demo used) :

  1. <>

So the entire internal text is missing, it is replaced by <>.

What I found is that the text coming into plugin is like :

<ol style=\"list-style-type: decimal; direction: ltr;\">
<li style='color: red; font-family: \"Calibri\",\"sans-serif\"; font-size: 11pt; font-style: normal; font-weight: normal;'>
<p style='color: rgb(0, 0, 0); font-family: \"Calibri\",\"sans-serif\"; font-size: 11pt; font-style: normal; font-weight: normal; margin-top: 0in; margin-bottom: 0pt; mso-list: l0 level1 lfo1;'>
	<span style=\"color: red; mso-ansi-language: EN-US;\">First</span>
</p></li>

........

It is gradually transformed to :

"<ol><li cke:indent=\"1\" cke:listtype=\"ol\" cke:list-style-type=\"\">
<cke:li cke:reset=\"1\" cke:indent=\"1\" cke:listsymbol=\"First\"></cke:li></li></ol>"

Which then leads to the behavior I described.

#12386 font style format Bug Normal General
Description

I'm trying to modify the way the font combo is outputting html

config:

config.font_names = 'Arial;' + 'Times;' + 'Courier' ;

My combo is well displayed -> 3 fonts are available but when i'm applying the font, i would like to modify the way the span is generated. For instance instead of <span style="font-family: arial"> I would like <span style="font-family: Arial">

is it possible ?

#12387 Bug with skin, nonsupporting chameleon feature and specified uiColor Artur Delura Bug Normal CKEditor 4.4.7 UI : Skins
Description

If skin does not support chameleon feature and user specifies uiColor setting he get either js errors (1) (if skin is builtin) or messed up skin (2) (if skin is external file and we have another builtin skin, that defined chameleon feature. See http://jsfiddle.net/danya_postfactum/dubhh1st/

CKEditor can be used in a CMS, that allows to specify skin and uiColor properties, so an user is not protected.

CK Docs say:

Of course we don’t recommend this, but if that is the case, it is enough to not defined the chameleon function in the skin.js file.

This is bad advise. To fix this bug we could check chameleon property is callable (1) and delete obsolete property when scriptLoader loads a new skin (or even recreate CKEDITOR.skin object)

#12389 Chrome 38 Beta: SHIFT+ENTER on empty line causes browser to crash Bug Normal General
Description

On Chrome Version 38.0.2125.24 beta-m, I've noticed that SHIFT+ENTER in certain scenarios is causing Chrome to crash and give it's "Aw snap!" page.

To recreate the issue using the ckeditor demo: 1) Select all of the content and delete it 2) Place the cursor in the first (empty) line 3) Press SHIFT+ENTER

This is fine on other non-beta Chrome versions, but I thought I would raise it as the current beta will become the next release at some point and this may be something you want to investigate before that happens.

#12390 When an asynchronous post back happens really quickly after loading a CKEditor, a script error occurs Bug Normal General
Description

When an asynchronous post back happens immediately after loading a CKEditor, a script error occurs around this piece of code:

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")

This is because a.element is <null>, but this is not checked before it is used.

#12393 setData and destroy functions fail after doing drag&drop of the instance Bug Normal General
Description

If you drag&drop the CKEDITOR, the instance is broken due to the iframe reloading. Naturally one would expect the setData to repair the CKEDITOR state. Additionally you cannot even destroy the instance in order to recreate it.

Current (high-level) workaround is:

var c = CKEDITOR.instances[name].config;
delete CKEDITOR.instances[name];
$('#cke_' + name).remove();
CKEDITOR.replace(name, c);

This snippet can be used in a "drop" event, but as you see from the code, this fix relies on internal knowledge of the CKEDITOR.

Please make sure that setData() works without the need to destroy and recreate the instance and also properly destroy() the instance when needed.

#12394 Last key not detected in source area Bug Normal General
Description

Hi

I am using 4.4.2 version of Ckeditor. When I am tying in source area and submitting form last key value not saved. And Also if I copy and paste content in source and not change any thing and submitting form no content will be save.

#12397 removes <ins> Tag even with allowedContent=true Bug Normal General
Description

Ckeditor removes <ins></ins> tags even with the config.allowedContent=true

Tag in question is Google Adsense's tag. Exemple : <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-4376438685023602" data-ad-slot="3327144465"></ins>

Sometimes it isn't deleted but in most of times it is deleted when passing from source mode to "visual" mode.

Exemple #1 :

  • in source mode, paste :

<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-4376438685023602" data-ad-slot="3327144465"></ins>

  • it deleted after passing to visual mode.
#12398 Maximize-Button doesn't work in instances without a title Artur Delura Bug Normal CKEditor 4.4.5 General
Description

When CKEditor is initialized like this...

CKEDITOR.replace(element, { title: '' });

...the Maximize-Button does produces an javascript-error and fails:

Uncaught TypeError: Cannot read property 'setCustomData' of null ckeditor.js:830
Uncaught TypeError: Cannot read property 'setSize' of null ckeditor.js:321

This can be seen here: https://www.hoessl.eu/ckeditor/samples/divreplace.html This is from the standard package, with only one modification: the ", {title: }" was added.

The reason seams to be that no .cke_voice_label-element is created for the instance when the title is empty, but the maximize-plugin thinks the .cke_inner-element is always the second child of its parent, probably in line 128 of plugins/maximize/plugin.js:

var container = editor.container.getChild( 1 );

First bad commit: e7b3238

#12399 Paste from Word - Wrong MIME of images Bug Normal Plugin : Paste from Word
Description

Version: 4.4.4

Following scenario:

  • open Microsoft Word 2013
  • insert jpg picture into document
  • press Ctrl+A (select all)
  • press Ctrl+C (copy)
  • goto CKEditor
  • press Ctrl+V (paste)
  • right click on picture and select Picture Properties
  • on URL there is "data:image/png;base64,.." instead: "data:image/jpeg;base64,..."

The same is with copy-paste from Outlook email.

With png images is OK.

#12401 Caret and style in WYSIWYG Task Normal General
Description

Is there a way to adjust caret behavior in WYSIWYG mode of CKE.

In general the routine and desired result:

1) You have some text and some words are bold or italic.

2) Move the caret to the end of these bold/italic words, hit space and start typing.

What happens: new word inherits the bold/italic style, it's a default behavior for all text editors.

Desired result: after hitting space and typing new words styles shouldn't be inherited from previous word.

Thanks in advance!

#12402 Regression in Chrome 37 causes document title to stop updating Piotrek Koszuliński Bug Normal CKEditor 4.4.5 General
Description

They came out recently, so I assume it's after Chrome 36 updated to 37. Regression was reported already: https://code.google.com/p/chromium/issues/detail?id=411111

It affects:

#12403 Changing the same font styles should not lead to nesting them Piotrek Koszuliński Bug Normal CKEditor 4.4.6 Core : Styles
Description

Steps to reproduce:

  1. Try Chrome because it gives nice visual result for this issue.
  2. Open replcebycode sample and remove editor contents
  3. Change font size to 36 and type some text
  4. Change font size to 10 and type some text.
  5. At the moment cursor has 36 height
  6. Press enter and type some text

Result: Cursor is still big because both spans were transferred to second line. The general problem here is that spans got nested.

When typing with one inline style value (e.g. 30px) and then changing this value to something else (e.g. 10px), first span should be closed and other opened.

NOTES:

  • I think this should only work for same style properties because otherwise it wouldn't be possible to have e.g. text with size 36px and red background.
#12405 The editor keeps crashing on ipad Bug Normal Project : MediaWiki+FCKeditor
Description

Dear Sir or Madam

It is now IMPOSSIBLE to edit anything more than 3 sentences on the editor. We selected your editor, because we heard that you have a good level of support for ipad.

This issue is hugely critical for what we do. Please resolve this issue for us over the weekend. Please let us know what we can do to improve the problem.

Kindest regards,

Dawit

#12406 Paste from word ckeditor does not work Bug Normal Plugin : Paste from Word
Description

We migrated to CKEDITOR 4.4 form fckeditor 2.7 but now we are facing many problems with Paste from word feature. when we paste from word we are facing following issues:

  1. paste from word does not retains the margin attributes. so if the word document has content with margins and after using paste from word feature the margin attribute is removed.
  2. paste from word does not retain bullets and numbering which are left indented in word document.
  3. paste from word adds annoying spaces in IE between any sentence and table below it.
  4. paste from word adds annoying spaces in all browsers between any sentence and bullets and numbering below it.

when we use fckeditor paste from word would copy one to one styles for each line but ckeditor is not doing that. i have added CKEDITOR.config.allowedContent = true;

CKEDITOR.config.pasteFromWordRemoveStyles=false;

CKEDITOR.config.pasteFromWordRemoveFontStyles = false;

CKEDITOR.config.pasteFromWordRemoveStyles = false;

CKEDITOR.config.fillEmptyBlocks = false;

follwing attributes to Config.js but still all the issues persists. i have searched across forums but didnt find any solution working. I am attaching the word doc and also the ck editor build.js. Please help us to resolve the issues.

#12411 Missing null check in the pagebreak plugin Artur Delura Bug Normal CKEditor 4.4.5 Core : Parser
Description

Line 137 in plugins/pagebreak/plugin.js: <code>return parent && parent.name == 'div' && parent.styles[ 'page-break-after' ]; </code>

I've come across content in which parent.styles was undefined, resulting in the parser process crashing and further plugins not being loaded. I'll try to add a screenshot, if the system here permits it.

#12414 WordPress V4.0 Bug Normal Performance
Description

Cannot get CKEditor to work with new WordPress V4.0. It is probably me but Help please..

#12415 Problem writing Korean in IE11 with auto grow plug in Bug Normal General
Description

Open the AutoGrow plugin example in IE 11 Try to write in Korean characters The characters are not connected correctly: for example if you try to write 추 (cn) you get ㅊㅜ.

If you write (cn) very fast you get the write result but it is still impossible to write like this.

I think it is related to the function "contentHeight" in autogrow/plugin.js, which add a temporary marker element that somehow change the selection

#12416 Prioritising widgets' upcast methods Piotr Jasiun New Feature Normal CKEditor 4.5.0 Beta General
Description

It should be possible to set the priority of widgets' upcast methods, so methods will be called in the specific order.

Case: we have image2 and another widget that should be created on specific <img> tags (e.g. with some class).

#12417 I found bugs in editor Bug Normal General
Description

1)I am pasted text from word 2007 (.docx) in random place pasted this link "< a name="_GoBack">< /a>" (i am inserted space after < ). 2)I want paste id="target_element", but editor pasted "< a id="target_element" name="target_element">" Why editor inserted link? 3)I do not found alignment by center, only by left and right, in image dialog. I know "float: center" not exist, but this css-style help centred image: "text-align: center; margin-left: auto; margin-right: auto;" Please, fix this small bugs. Thank you.

#12420 [FF@Linux] Caret sticks to one place after DnD Piotr Jasiun Bug Normal CKEditor 4.5.0 Beta General
Description

Again the same bug on Firefox, but this time for content dragged inside one editor.

  1. Dnd.
  2. Try using arrow keys to navigate.
  3. Nothing happens. But you can write freely.
#12421 [Chrome] Drop position invisible Piotr Jasiun Bug Normal CKEditor 4.5.0 Beta General
Description

There's no caret visible when dragging. Most likely caused by preventing dragover which I don't know why we do.

#12422 Select-all doesn't work if a widget is the first node of the editor Bug Normal UI : Widgets
Description

When the first item in the editor is a block-level widget, it's impossible to select all within the editor.

On the widget demo page, drag the simplebox widget or the enhanced image widget to be positioned above the first paragraph. (Alternatively, cut and paste the widget to move it in the source view).

Now, if you try to use Edit->Select All or command-A, you can no longer select all the content in the editor (if your cursor is within a widget editable, select-all will only select that editable).

Observed on Mac OS 10.9.2, Chrome Version 31.0.1650.57 and Safari Version 7.0.2

Note that if you try the same thing with the Code Snippet widget, select all will work if you do it twice in a row.

#12423 [Safari 7.1+, 8.0] Enter key at the end of block is broken Piotrek Koszuliński Bug Normal CKEditor 4.4.5 UI : Enter Key
Description

Safari 8.0 (10600.1.15) on OS X 10.10

I first encountered this on my Drupal 7 + ckeditor installation and then I get the same result here: http://ckeditor.com/demo

  1. When cursor is at the end of line and I press Enter it moves to the start of the first line (left/top of the area) sometimes (. Also it gets invisible but not always. I think it only misbehaves when there's a tag that ends there.
  1. When cursor is anywhere in the middle of any line (or at the end of soft wrapped line) it works as expected on Enter — new paragraph created, cursor is at the beginning.

I made a screenshot to clarify things

#12424 Conflict with Toolbar and Templates... Bug Normal UI : Toolbar
Description

I have detected a bug that can be reproduced easily. The code below is a reduction of the sample code: "inlineall.html".

The bug is: If you run the below code without setting your own toolbar configuration, I mean NOT setting: "editor.config.toolbar", then the templates divisions are inserted properly. But if you set the previous configuration for example the toolbar buttons below, then the templates divisions are not inserted properly and some <br /> tags are inserted instead.

If you have a patch or workaround for this bug, please, let me know, because it is very important for me because soon I have to deliver a job where I used this fantastic tool you created. Congratulations!

Regards, Angel.

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Massive inline editing &mdash; CKEditor Sample</title>
	<script src="../ckeditor.js"></script>
	<script>
		CKEDITOR.on('instanceCreated', function(event) {
			var editor = event.editor;
			editor.config.toolbar = [[ 'Styles', 'Templates' ]];
		});
	</script>
	<link href="sample.css" rel="stylesheet">
</head>
<body>
	<div contenteditable="true">
		<p>
			Lorem ipsum dolor sit amet enim. Etiam ullamcorper. Suspendisse a pellentesque dui, non felis. Maecenas malesuada elit lectus felis, malesuada ultricies.
		</p>
		<p>
			Curabitur et ligula. Ut molestie a, ultricies porta urna. Vestibulum commodo volutpat a, convallis ac, laoreet enim. Phasellus fermentum in, dolor. Pellentesque facilisis. Nulla imperdiet sit amet magna. Vestibulum dapibus, mauris nec malesuada fames ac.
		</p>
	</div>
</body>
</html>

#12425 Snapshot is not created on more than 20 changes by holding different keys - both at the same time Bug Normal General
Description

Reproducible in all browsers.

  1. Open editor.
  2. Press and hold some printable key for less than 20 characters.
  3. Press and hold some different printable key to exceed 20 characters including previous one.

Actual result: snapshot is not created.

Expected result: snapshot should be created when 20 characters exceeded. There is a test written for this issue already.

#12426 2 images shown when using Image upload in CKEdtior using iPad Bug Normal General
Description

Open CK editor in iPad. Try to use Image upload plugin.

You see that there are 2 images being added to the editor.

#12427 The <Templates> node was not found alert Message is coming in IE 11 Bug Normal General
Description

The <Templates> node was not found alert Message is coming in IE 11 and Also template is not showing in dialog box. In other browser it works fine & in IE 9 & IE 10 it works fine. Please help me

Thanks in advance Nikhil Kanade

#12428 Browser Detection: Opera 12.14 Bug Normal General
Description

Hello

Please consider removing the browser detection, and switch to using feature detection instead.

One reason why: Opera 12.14 actually supports CKEditor just fine, but only once the browser detection is removed.

#12429 We recently upgraded to CKeditor 4.4.4 version from then onwards having problems with IE browser Bug Normal General
Description

After upgrading 4.4.4 version in IE11 we observed strange behaviour aither the editor pane strucked, or throws Javascript errors or SCAYT not enabled.We are enabling SCAYT on load using scayt_autoStartup = true

We also found the similar issue: http://dev.ckeditor.com/ticket/11084

and we also saw fix is not present in the releases page.

Could you please suggest a fix for the issue.

#12430 Display move cursor on images in IE Bug Normal Core : Styles
Description

Hi,

I am using ckeditor 4.4.2 on my web app. I found course issue in IE. Following are steps:

In IE when I rollover on an image then cursor automatically turn to 'move' cursor, but Firefox and chrome seems ok as they are stay 'default'.

Firstly, I think this was my app issue but later I noticed that this is also same problem in ckeditor.

Steps to reproduce:

  1. load ckeditor with image (http://ckeditor.com/demo)
  2. rollover on the image
  3. notice that cursor is 'default (arrow)' in Firefox and Chrome. But in IE changed to 'move' cursor.

Browser and OS:

Internet Explorer 10, 11 Windows 7, 8

Any ideas on how to fix? This will be great user experience in my app if the issue fixed.

#12431 The <Templates> node was not found alert Message is coming in IE 11 Bug Normal Server : ASP.Net
Description

The <Templates> node was not found alert Message is coming in IE 11 and Also template is not showing in dialog box for IE 10. In other browsers and IE 9 it is working fine.

Can you please help us on this issue.

Thanks in advance!

Regards, Rohit Kadam

#12433 ckeditor doesn't work when hiding after "instanceReady" Bug Normal Core : Editable
Description

Hi,

I am doing a project that uses ckeditor.I use event handle "instanceReady" and hide the container "div" of ckeditor to open it when needed.

CKEDITOR.on("instanceReady", function(evt){
  $("#cke_" + evt.editor.name).hide();
})

However, when I open it by unhide that div, the ckeditor is empty and I can not enter anything to iframe although there is some text in original textarea.

#12434 314 - TypeError: a is undefined Bug Normal General
Description

console firefox typeerror cheditor.js line 314

same with QUnit - Message

TypeError: a is undefined Source:

http://localhost/mobger/inhalte/typo3conf/ext/multiblog/Resources/Public/ckeditor/ckeditor.js?1408541360:314

#12435 '\u200B' ('cke-fillingChar') is everywhere in document Bug Normal General
Description

This bug has been evident (to me) for about a year. I use Chrome on Mac, Linux and Windows.

#12436 403 Forbidden on submit Bug Normal General
Description

When submitting my server returns a 403 forbidden but only when there are multiple line returns in the editor.

<p>test</p> <p>test</p> return 403 error

test<Br><br> test<br><br> return 403 error

test<br> test no error

all browsers - all OS

#12437 multiple inline editor instance on chrome onblur issue Bug Normal General
Description

I have to enable 2 divs as inline ckeditor in one page. First time blur event fires once, second time blur event fires on 2 different editor instance.

Here is my code:

for cicle ---

var ck_editor_inline_id = field.htmlElement.replace("#",""); if (CKEDITOR.instances[ck_editor_inline_id]==undefined) {

CKEDITOR.inline(ck_editor_inline_id, { extraPlugins : 'EPVTexts,EPVSaveTexts', startupFocus : true, enterMode : CKEDITOR.ENTER_BR, shiftEnterMode: CKEDITOR.ENTER_P, on:{

focus: function(event){

event.editor.on( 'click', function( ev ) {

editButton.fadeOut(); ev.data.stopPropagation();

});

}, blur: function(ev){

editButton.fadeIn(); var curE=CKEDITOR.instances[ev.editor.name]; if (curE.checkDirty()) {

field.value=curE.getData(); SetField(s,c,field);

}

}

}

});

}

end for cicle ---

How can i pass parameters on plugin of each editor instance ? I need to pass params like (field , s,c vars) to EPVTexts and EPVSaveTexts

#12439 "CKEDITOR.ENTER_BR" / "<br /> tags" conflict... Bug Normal Core : Output Data
Description

Hello, in my usage of CKEditor I need CKEDITOR.ENTER_BR, but I have a problem:

For some reason CKEditor removes the last <br>

For example, you can open: samples/plugins/enterkey/enterkey.html

Set option: "When Enter is pressed" to: "Break the line with a <BR>"

Remove the content of the editor, and once the page is blank, press enter key, for example, three times.

Then, switch to HTML source view.

You will see three <br /> tags.

Then switch to WYSIWYG view and then to HTML source view again.

Now you will see two <br /> tags (one less).

And so on, until all <br /> tags dissapears.

Regards!

#12440 Configuration option to hide the 'Automatic' option in the color picker Tade0 New Feature Normal CKEditor 4.5.8 General
Description

We would like to be able to hide 'Automatic' from the Colorpicker - would it be possible to define a new config option in CKEditor config to be able to remove it?

#12444 CKkEditor adding unnecessary spaces Bug Normal General
Description
  1. Update the 'source' mode with the following content
  2. <div>This is my test data</div>
  3. Switch to 'WYSIWYG' mode and switch back,

Actual Result: <div>

This is my test data</div>

Expected Result: <div>This is my test data</div>

Kindly revert with a resolution for this issue. Thanks

#12447 CKEditor does not work with Blink Bug Normal General
Description

After some tests, CKEditor does not work with Blink.

See screenshot.

#12448 insertHtmlIntoRange Piotr Jasiun New Feature Normal CKEditor 4.5.0 Beta General
Description

When image is uploaded (#11461) we need to replace uploading image with the final one, so we need to insert html in the given range (not in the editors selection). Because of this situation we need to introduce insertHtmlIntoRange methods.

#12449 divarea and Firefox table handles Bug Normal General
Description

Hello, at http://ckeditor.com/demo#inline with Firefox 24 and 31:

  • Create a table and clicking in it
  • The native table handles of Firefox appears on top left of the page

The same in .../samples/plugins/divarea/divarea.html and in my application using divarea and config.disableNativeTableHandles = false;

Probably related to 11072

Thanks, Frank

#12451 ckeditor.js crashes with JS runtime error Bug Normal General
Description

ckeditor.js throws an unhandled exception at line 234, column 34: 0x800a138f - JavaScript runtime error: Unable to set property 'previous' of undefined or null reference.

The attached HTML file is what we are trying to display when the error is thrown. In line 317 of the HTML code, if I change the text-align from "center" to "left", then the code displays correctly with no error.

#12452 <Templates> node was not found Error Message in IE11 Bug Normal General
Description

Hi,

We have already posted for this error on Ticket #12427. We received reply that we need to upgrade our CKEditor version from 3.6 to 4.4.4.

We tried to do this but we are still facing other issues.

Please note that we are using CKEditor since 2010 and we did lot of changes in most of the files to match our requirement. So we can not replace whole CKEditor directory with latest version.

So it could be very helpful if you can provide us with the EXACT file to change on any exact code to replace so that we can change only single file and this issue for IE11 will be resolved.

Please let us know if we can change any config file to support CKEditor for IE11.

Any help will be appreciated.

Thanks in advance.

Regards, Rohit Kadam

#12454 Widget at bottom of editor blocks certain keyboard shortcuts Bug Normal UI : Widgets
Description

If a widget is the last thing in an editor area, certain keyboard shortcuts stop working.

Issue doesn't seem to affect Firefox or IE, but seems to affect Chrome and Opera (Windows and Mac) and Safari (Mac) so I suspect it's a webkit/blink issue.

Issue seems to only affect CTRL+A, CTRL+END and CTRL+SHIFT+END and only if a widget is the last thing in the editor body.

To Reproduce:

  1. Go to the CKEditor Widget demo: http://ckeditor.com/demo#widgets
  2. Try using one of the shortcuts mention above (i.e. CTRL+A). THIS WILL WORK.
  3. Move the 'Simple Sample Box' to the very bottom of the editor and repeat STEP 2. The shortcut will have stopped working.
#12455 Inline instance initiated with jquery adapter that contains button element hangs my chrome 37.0.2062.120 (64-bit) Bug Normal General
Description

Inline instance initiated with jquery adapter that contains button element hangs my chrome 37.0.2062.120 (64-bit)

http://jsfiddle.net/pcmmfjtz/1/

#12460 CK editor not working in WP version 4 Bug Normal General
Description

Hi

I've just updated to wordpress version 4 and now the CK editor doesn't work. No menu bar or anything.

I'm using PHP version 5.5 on my server and the Misty theme. website is www.umbriapress.co.uk

Very disappointed to find I can't use my favourite editor any more and have wasted a whole morning trying to configure so hoping you have a solution.

Many thanks

#12462 Unable to use Ckeditor Bug Normal General
Description

Hi There,

I am unable to use the ckeditor.

  1. i have referenced ckeditor.js in my solution.

<script src="~/Scripts/ckeditor/ckeditor.js"></script>

  1. created a textarea in my page.

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

This is my textarea to be replaced with CKEditor.

</textarea>

  1. included javascript code

CKEDITOR.replace('editor1');

Still i am getting error in my page

0x800a138f - JavaScript runtime error: Unable to set property 'dir' of undefined or null reference.

Please let me know if i am missing any js or css file reference.

Regards,

Atif

#12464 Use ckeditor only for Bold Underline and Italic Task Normal General
Description

Hi,

I am using CKEditor in my solution but my requirement is different i want only Bold, Italic and Underline option should be displayed to the end user for my textarea and other option should be removed from end user view.

Regards, Atif

#12465 Can't update checkbox/radio button state with dialog when it is opened with double-click Tomasz Jakut Bug Normal General
Description

In Blink and Webkit it is impossible to change state of checkboxes/radiobuttons with properties dialog when this dialog is opened with double-click.

To reproduce:

  1. Open checkbox/radio button properties dialog.
  2. Enter all the values and press OK.
  3. Double-click on checkbox/radio button to open the checkbox/radio button properties dialog again.
  4. Click on checkbox in ckeckbox/radio button properties dialog to make it unselected and press OK.

Result: the state of checkbox/radio button is not changed (if it was checked, it is still checked).

Problem can be reproduced from CKEditor 3.3 (when opening properties dialog with double-click was made possible) in Blink and Webkit browsers.

NOTE: When you right-click on checkbox/radio button to open dialog and change its state then it works.

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