I'm using this method in ewebeditproevents.js to pop up a html page with the text. And this method uses GET to post the query.
eWebEditPro.openDialog(sEditorName, eWebEditPro.resolvePath("test_page.htm"), "sText=" + escape(srcText), "", "width=600,height=400,resizable,scrollbars");
Is there any other method that I can use in eWebEditPro so that I can have POST?
I tried looking in the documentation. Is my understanding correct? - The query strings are appended to URL when passed to a pop up. Does this mean there's no POST and only GET?
Is my understanding correct? - The query strings are appended to URL when passed to a pop up. Does this mean there's no POST and only GET?