Hi,
You can disable editing by putting the editor into preview mode. As mentioned about in the previous post, the Editor has three modes: In design mode user will be able to edit directly; in HTML mode user will be able to edit the HTML code; in preview mode user will be able to see the result but not able to edit anything. By default, user can directly switch between all three modes by clicking the tab buttons in the footer area. You can also:
1. Disable any mode by setting the mode's button text to empty. For example, if you do not want user to enter "Design" mode to edit your editor content, you can set the editor's DesignTabButtonHtml to an empty string;
2. Automatically switch the editor to any mode with JavaScript. The following code automatically switches the editor to preview mode:
Code: HTML/ASPX
<eo:Editor ID="Editor1" ClientSideOnLoad="disableEditor" .... >
....
</eo:Editor>
Code: JavaScript
function disableEditor()
{
setTimeout(function()
{
//Get an instance of the editor object
var editor = eo_GetObject("Editor1");
//Put the editor into preview mode so
//that the contents is read only
editor.setMode(2);
}, 200);
}
You can display or put anything in the editor. Either image or text or even video. It's an HTML editor and it handles pretty much everything that you do with HTML.
Our Editor is a high end HTML Editor and it should have pretty much everything you would expect from a HTML Editor. However it is not made for everyone. So you may also want to explore the documentation and samples to get an idea of what it has and what it does not has. Also we want you to aware that while we do our best to show you what can be done and how to do it, we do expect our users to have basic Web development and ASP.NET skill. So if what we have explained to you about the three modes doesn't make any sense to you at all, then our product is probably not for you. You can take a look of our support policy here:
http://www.essentialobjects.com/forum/postst1368_Product-support.aspxPlease take a look of that and see whether that is a problem for you as well. We welcome you as a customer if both the product and the support policy meets your need. However if you have a serious problem with either, then it will be much better for you evaluate other options and we will be more than happy to issue you a refund in that case.
Thanks