I am using classic ASP because this is an older application. I can get the control to render just fine but I can not set the value of the text area. Also, I need to retrieve it the value of the html so I can store it.
Any ideas?
Hi ericlarson,
Such functionality will be added for the next volume release due to the fact that current volume release had the html editor as a CTP, but until then I can suggest you the following workaround.
//editorId is the id of the element the html editor was initialized.var editorWorkspaceId = "#" + editorId + "_editor"$(editorWorkspaceId).contents().find("body").html(); // Get the html from the editor$(editorWorkspaceId).contents().find("body").html("Some HTML"); // Set the html for the editor
Best Regards,Bozhidar Cherkezov
That worked! Thanks for the help.