This is definitely a bug. If I send trigger a ajax postback, the editor will be frozen in chrom. However, if I remove the whole <table>, CE works perfectly.
Please help
<%
@ Page Language="VB" AutoEventWireup="false" CodeFile="TestChrome.aspx.vb" Inherits="TestChrome" %>
<%
@ Register Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
Namespace="System.Web.UI" TagPrefix="asp" %>
<%
@ Register Assembly="CuteEditor" Namespace="CuteEditor" TagPrefix="CE" %>
<!
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">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<table>
<tr>
<td>
<asp:Button ID="Button1" runat="server" Text="Button" />
<CE:Editor ID="cmsSurveyorComment" runat="server" ShowCodeViewToolBar="False" ConfigurationPath="~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/MyTool.config"
Width="100%" ShowPreviewMode="False" ResizeMode="None">
</CE:Editor>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</
body>
</
html>