Opened 7 years ago

Closed 7 years ago

#16909 closed Bug (invalid)

CKeditor toolbar events are not working in Microsoft edge browser

Reported by: Sibasish palo Owned by:
Priority: Normal Milestone:
Component: UI : Toolbar Version:
Keywords: Cc:

Description

Steps to reproduce

  1. setup ckeditor out of the box
  2. open the page in Microsoft edge browser
  3. type some text and try to make it bold

below is the code i used to setup OOB ckeditor 4.6.2

<html> <head>

<title>Sample - CKEditor</title> <script type="text/javascript" src="C:/Users/user1/Desktop/New folder/ckeditor_462/ckeditor.js"></script>

</head> <body>

<form>

<p>

My Editor:<br /> <textarea name="editor1">&lt;p&gt;Initial value.&lt;/p&gt;</textarea> <script type="text/javascript">

CKEDITOR.replace( 'editor1' ); CKEDITOR.config.width = "800";

</script>

</p>

</form>

</body> </html>

Expected result

Word should get bold

Actual result

None of the toolbar actions are working

getting below error on clicking on the editor area Unable to get property 'specified' of undefined or null reference at

case "contenteditable":case "contentEditable":return this.$.attributes.getNamedItem("contentEditable").specified?this.$.getAttribute("contentEditable"):null}

Other details (browser, OS, CKEditor version, installed plugins)

windows10 , Microsoft Edge browser

Change History (1)

comment:1 Changed 7 years ago by Jakub Ś

Resolution: invalid
Status: newclosed
Version: 4.6.2

CKEditor works without the problem on Edge what can be verified on our demo page which uses that version.

NOTE: CKEditor should be run from server and not locally form file system.

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