无法获取未定义或空引用的属性“contentWindow”

时间:2014-12-05 23:09:54

标签: javascript ajax twitter-bootstrap

我在Bootstrap模式中有一个Ajax编辑器。第一次模态打开它运行正常,下一次工具栏不再存在,它会抛出此错误。任何想法可能会发生什么?

由于

Unhandled exception at line 84, column 9 in http://localhost:53818/ScriptResource.axd?d=QnqJUlWX76vy-voPv0SOyeWuqjSyItje2m_RwWfpN9Dp9KL-kVEuy2eIP-IxAD4LMlqvG3esYD48cWHYJvzAF9a1YRm5XmxfCzWi0PaDVAfNV8mz4aOOLZVDVbMrKXACgpSJB28TI_zeX-HTr-9ysw2&t=ffffffffda74082d

ScriptResource.axd中抛出错误 - this._doc = this.get_element()。contentWindow.document;

 _initIframe: function(value) {
    if (!Sys.Extended.UI.HTMLEditor.isIE) {
        this._savedValue = value;
        this._absAndFixedParents = this._getAbsAndFixedParents();
    }
    var str = Sys.Extended.UI.HTMLEditor.Trim(this._prepareContent(value));
    this._doc = this.get_element().contentWindow.document;

    if (!Sys.Extended.UI.HTMLEditor.isIE) {
        this._doc.designMode = "on";
    }

这是模态

 <div id="modalEventsEditor" class="modal">
    <div class="modal-dialog">
        <div class="modal-content">


            <asp:UpdatePanel ID="EventsUpdatePanel" runat="server">
                <ContentTemplate>


                    <div class="modal-header">
                        <button class="close" aria-hidden="true" type="button" data-dismiss="modal">×</button>
                        <h4 class="modal-title">Events</h4>
                    </div>
                    <div class="modal-body">



                        <div role="form">



                            <fieldset>
                                <div id="eventDateDiv" class="form-group">
                                    <label id="eventDateLabel" for="inputEventDate">Date</label>
                                    <asp:TextBox ID="inputEventDate" CssClass="form-control" placeholder="The Date of the event" runat="server"></asp:TextBox>
                                    <ajaxToolkit:CalendarExtender runat="server" TargetControlID="inputEventDate"></ajaxToolkit:CalendarExtender>
                                </div>

                                <div id="eventTimeDiv" class="form-group">
                                    <label id="eventTimeLabel" for="inputEventTime">Time</label>
                                    <input id="inputEventTime" class="form-control" runat="server" type="text" placeholder="The Time of the event" />
                                </div>

                                <div id="eventAuthorDiv" class="form-group">
                                    <label id="eventAuthorLabel" for="inputEventAuthor">Author</label>
                                    <input id="inputEventAuthor" runat="server" class="form-control" type="text" placeholder="The Author of this notice" />

                                </div>

                                <div id="eventTitleDiv" class="form-group">
                                    <label id="eventTitleLabel" for="inputEventTitle">Title</label>
                                    <input id="inputEventTitle" runat="server" class="form-control" type="text" placeholder="The Title of this notice" />
                                </div>


                            </fieldset>


                        </div>

                        <div id="editorContainer">
                            <cc1:Editor ID="Editor1" runat="server" />
                        </div>


                    </div>


                    <div class="modal-footer">
                        <button class="btn btn-default" type="button" data-dismiss="modal">Close</button>
                        <button id="modalEventsEditorButton" runat="server" class="btn btn-primary" type="button">Save changes</button>
                    </div>
                </ContentTemplate>
            </asp:UpdatePanel>

        </div>
    </div>
</div>

2 个答案:

答案 0 :(得分:0)

似乎MS Ajax异步编辑器控件不是异步的!与众所周知的巧克力防火手一样好。

当MS asp.net论坛使用TinyMCE时,我沿着这条道路前进。与Modal合作有点令人头疼,但最终想到了 - 如果有人想要这个方法留言并且我会发布代码

答案 1 :(得分:0)

我有同样的问题;的种类。我在tabcontainer中有一个编辑器,第一次进入选项卡时编辑器工作(加载)。我会转到另一个选项卡然后再返回它会失败(第84行,第9列中的未处理异常)。对于我的解决方案,我在tabContainer上关闭了autoPostBack。

在你曾经是程序员的那一天;现在你是一名房产骑师...这都是伏都教。