I set the EditCompleteDocument to true. I do this so i can set a background image/color to the page. I then save the html to the database. When i retrieve the html from the database it does return the proper html. However, when i load the editor with the html from the database, the background property does not show up. Any ideas of how to keep the html text (with all the tags)
for example:
In database:
<html><head><title>Untitled</title><meta content="CuteEditor" name="GENERATOR" /></head><body style="BACKGROUND-COLOR: #0000ff">this is a TEST </body></html>
What gets displayed in In Editor:
<html>
<head>
<title>Untitled</title>
<meta content=CuteEditor name=GENERATOR>
</head>
<body>this is a TEST
</body>
</html>