﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11970	CKEditor paste event not fired when pasting with SHIFT+INS in IE9	Henning	Piotr Jasiun	"I don't get CKEditor's 'paste' event fired when pasting with SHIFT+INS  using
 * Internet Explorer 9
 * CKEditor 4.3.2
 FF and Chrome fire the paste event.

See the small example code below. Paste alert is not displayed.

Browsing thru clipboard\plugin.js, this seems to be a complex matter. I do  get the paste event in IE9 when removing the following line from the onKey  function, but cannot oversee the side effects of this:
   case CKEDITOR.SHIFT + 45: // SHIFT+INS


----

{{{
<!DOCTYPE html>
<html>
  <head>
    <title>A Simple Page with CKEditor</title>
    <script src=""ckeditor/ckeditor.js""></script>
  </head>
  <body>
    <form>
      <textarea id=""editor1"" name=""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.
        var myEditor = CKEDITOR.replace('editor1');
        myEditor.on('paste', function (evt) {
             alert(""paste 1"");
        });
      </script>
    </form>
  </body>
</html>

}}}
"	Bug	closed	Normal	CKEditor 4.4.4	General	4.0 Beta	fixed	IE Support	
