Can't add text inside Radeditor (Design) in IE 9, 10 after re-appending radedtior to a new div
Scenario to reproduce:
<div id="prev"><telerik:RadEditor ID="RadEditor1" runat="server" ></telerik:RadEditor></div>
<div style="height:200px;">some text...</div>
<div id="next"></div>
<div id="btn">click</div>
<script type="text/javascript">
$(function () {
$("#btn").click(function(){
$("#next").append($("#prev"));
});
});
</script>
1. After clicking on "click" (button), the div (id="prev") which contains the editor is being append to div (id="next") (according to jquery script).
2. It's impossible to add text inside the editor (Design) in IE 9,10 (it works fine in chrome).
Scenario to reproduce:
<div id="prev"><telerik:RadEditor ID="RadEditor1" runat="server" ></telerik:RadEditor></div>
<div style="height:200px;">some text...</div>
<div id="next"></div>
<div id="btn">click</div>
<script type="text/javascript">
$(function () {
$("#btn").click(function(){
$("#next").append($("#prev"));
});
});
</script>
1. After clicking on "click" (button), the div (id="prev") which contains the editor is being append to div (id="next") (according to jquery script).
2. It's impossible to add text inside the editor (Design) in IE 9,10 (it works fine in chrome).