Hello,
I am trying to get the tinymce working within an updatepanel.
The problem is that when I enter some text in the textbox, and press the save button, the entered text is gone and the textbox isn't wired up anymore with tinymce
I have seen a lot of answers and blogs around the web (using scriptmanagers.registeronstartup() and tinymCE.triggersave() and tinyMCE.execCommand(), etc) , but none of them work on my side. Because I have tried all kind of different solutions, I left out
my code, these 'not working' code lines.
I am using tinymce 4.1.3. and asp.net 4.5
Here is my asp page :
<asp:Content runat="server" ID="Head" ContentPlaceHolderID="HeadContent">
<script type="text/javascript">
tinymce.init({
selector: ".tinymce",
theme: "modern",
menubar: false,
resize: false,
...
Go to the complete details ...