Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 11754)

Ticket Resolution Summary Owner Reporter
#16909 invalid CKeditor toolbar events are not working in Microsoft edge browser Sibasish palo
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

#16904 invalid CKEditor breaks SharePoint TaxonomyWebTaggingControl fields mmc071dotnet
Description

Steps to reproduce

  1. Create a SharePoint application page in Visual Studio
  2. Add a Taxonomy:TaxonomyWebTaggingControl control to the page
  3. Add a script tag referencing ckeditor.js

Expected result

The Taxonomy field should work as normal its not a Textarea field so should not be touched by CKEditor

Actual result

CKEditor modifies the field's html to such an extent that it breaks the functionality of it

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

Am using SharePoint 2016 and have reproduced the issue using CKEditor 3.6.6.2 and 4.5.11, using standard config and have also tried CKEditor.Net.

The Taxonomy control's html without loading CKEditor on the page is as follows...

<div class="ms-rtestate-write ms-taxonomy-writeableregion ms-inputBox"
 id="ctl00_PlaceHolderMain_ctl01editableRegion" role="textbox" aria-haspopup="true"
 contenteditable="true" aria-autocomplete="both" aria-multiline="true"
 DisableRibbonCommands="True" AllowMultiLines="false" 
RestrictPasteToText="True">
<span title="" class="valid-text">Cruise</span></div>

The Taxonomy control's html with loading CKEditor on the page is as follows...

<div tabindex="0" title="Rich Text Editor, ctl00_PlaceHolderMain_ctl01editableRegion" 
class="ms-rtestate-write ms-taxonomy-writeableregion ms-inputBox cke_editable
 cke_editable_inline cke_contents_ltr cke_show_borders"
 id="ctl00_PlaceHolderMain_ctl01editableRegion" role="textbox"
 aria-haspopup="true" aria-describedby="cke_114" style="position: relative;"
 contenteditable="true" spellcheck="false" aria-autocomplete="both"
 aria-label="Rich Text Editor, ctl00_PlaceHolderMain_ctl01editableRegion"
 aria-multiline="true" DisableRibbonCommands="True" AllowMultiLines="false"
 RestrictPasteToText="True"><p></p></div>
#16899 invalid Getting "Unable to set property 'innerHTML' of undefined or null reference" in wordcount/plugin.js kamalnayan
Description

We are using ckeditor4.5.7 in our applications which contains multiple editor sections and getting the error when we click on first editor section and then click on another editor section quickly. There could be a race condition due to which facing issue. but, please look into this and let me know if there is any fix for that.

Steps to reproduce

  1. Click on first editor section
  2. Click on another editor section quickly

Expected result

Should work without any issue

Actual result

Getting "Unable to set property 'innerHTML' of undefined or null reference" in wordcount/plugin.js

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

Browser:IE11, OS:Win-7, CKEditor:4.5.7

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