I am using Tinymce editor. In it there is an option for Paste from word. On the click action of it, it calls a function windowmanager.open
My objective is to display the existing content of the editor in the popup window.
I am passing the content using query string, but sometimes the content is too large and i get URI limit exceed error.
Please help me on how to pass the content to the view file.
var actualContent = ed.getBody().innerHTML;
ed.windowManager.open({
file : url + '/pasteword.php?preContent='+encodeURIComponent(actualContent),
width : 450,
height : 400,
inline : 1
}, {
plugin_url : url
});