Hi,

I set HtmlEditor Property to readonly.. but when i select the text inside htmleditor and press enter key the text is erased and if i click any where in the htmleditor then i press the enter button the text goes down ...

I am using 0.8 version
<%@ Page Language="C#" %>
<%@ Register Assembly="Coolite.Ext.Web" Namespace="Coolite.Ext.Web" TagPrefix="ext" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">

<ext:ScriptManager ID="ScriptManager1" runat="server">
</ext:ScriptManager>
<ext:HtmlEditor ID="HtmlEditor1" runat="server" Text="HTMLEDITOR-READONLY" ReadOnly="true">
</ext:HtmlEditor>


</form>
</body>
</html>