DevExpress ASPxRichEdit - "Cannot read property 'columnOffset' of undefined" JavaScript 错误

DevExpress ASPxRichEdit - The "Cannot read property 'columnOffset' of undefined" JavaScript error

基本上我想要完成的是将 ASPxRichEdit 放入弹出控件中,这样当用户双击作业时,它会在弹出控制器中显示该作业的注释。然而,我遇到的问题是,每当我将 ASPxRichEdit 控制器放入 ASPxPopupControl 时,我都会收到以下错误:

这是我尝试实现的 ASPxPopupControl 的片段

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
    <body>
        <form runat="server">
            <dx:ASPxPopupControl Width="1200" Height="600" ID="ASPxPopupControl1" runat="server">
                <ContentCollection>
                    <dx:PopupControlContentControl Width="1200" Height="600">
                        <dx:ASPxRichEdit Width="1000" Height="500" ID="ASPxRichEdit1" runat="server"      WorkDirectory="~\App_Data\WorkDirectory">
                        </dx:ASPxRichEdit>
                    </dx:PopupControlContentControl>
                </ContentCollection>
            </dx:ASPxPopupControl>
        </form>
    </body>
</html>

是的,这是控件中的一个错误,无法启动文档 processing/calculating 当它不可见时(或放置在不可见的容器中)。此错误已在此票证的上下文中修复:https://www.devexpress.com/Support/Center/Question/Details/T198005

已经请求修补程序,我相信它会在最近几天提供。