Opened 7 years ago

Closed 7 years ago

#16473 closed Bug (wontfix)

Cannot position cursor with mouse using Edge browser if CKEdit instance is contained inside a draggable DIV

Reported by: ianbale Owned by:
Priority: Normal Milestone:
Component: Core : Focus Version:
Keywords: Cc:

Description

Steps to reproduce

  1. Use Edge browser
  2. Create a DIV with attribute draggable=true
  3. Create a ckedit instance inside the draggable div
  4. Add some text to edit region
  5. click somewhere in the text

Expected result

cursor should move to the clicked position

Actual result

cursor does not move

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

I'm using 4.5.11 and Edge on Windows 10

NOTE: The cursor can be moved using the arrow keys. Just not with the mouse.

Change History (1)

comment:1 Changed 7 years ago by Jakub Ś

Resolution: wontfix
Status: newclosed
Version: 4.5.11

You will get the same result with native contenteditable element. You can try below HTML with no editor used.

<div draggable="true">
	<div contenteditable="true" style="border: 1px solid black;">text</div>
</div>

I'm sorry but this is not editor issue. This is a problem with browsers handling draggable and contenteditable elements together. From what I can see, IE11, Edge and Firefox have problem with that.

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