﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3419	Paste button not available after SetData function	ambio		"Hi,

After calling the SetData function, the paste buttons are not enabled (my clipboard has data) in internet explorer (tested in IE7). Other browser does not have this problem. How can I solve this problem?

Here is the code of my test:


{{{
<!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1.0 Transitional//EN"" ""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"">
<html xmlns=""http://www.w3.org/1999/xhtml"">

<head runat=""server"">
    <title></title>
    <script type=""text/javascript"" src=""/fckeditorLatestBuild/fckeditor.js""></script>
    <script type=""text/javascript"">
        window.onload = function() {
            var oFCKeditor1 = new FCKeditor('MyTextarea1');
            oFCKeditor1.BasePath = ""/fckeditorLatestBuild/"";
            oFCKeditor1.ReplaceTextarea();
            setTimeout(""myClick()"",5000);
        }
        
        function myClick() {
		var oEditor = FCKeditorAPI.GetInstance('MyTextarea1');
		oEditor.SetData(""<p>hello world</p>"");
		oEditor.Focus();
    	}
    </script>
</head>

<body>
    <form id=""form1"""">
    <div>
          <textarea id=""MyTextarea1"" name=""MyTextarea""></textarea>
    </div>
    </form>
</body>
</html>

}}}


Thanks in advance!
"	Bug	confirmed	Normal		UI : Toolbar	FCKeditor 2.6.4		IE	
