1

我有一个主“报告”页面,其中包含用户可以执行的一些操作,这些操作将打开一个模态 RadWindow,让用户执行操作,然后单击保存,模态窗口将关闭,主网格刷新。

这在 IE 和 Firefox 中都可以正常工作,但 Chrome 会完成所有“工作”,但模式页面保持打开状态。仅当我点击“保存”按钮时,这才是正确的;表单顶部的取消按钮和关闭按钮仍然可以正常工作。

这是子窗口中的 JavaScript:

<script type="text/javascript">
    function GetRadWindow() {
        var oWindow = null;
        if (window.radWindow)
            oWindow = window.radWindow;
        else if (window.frameElement.radWindow)
            oWindow = window.frameElement.radWindow;
        return oWindow;
    }

    function CloseRadWindow() {
        var oWnd = GetRadWindow()
        oWnd.SetUrl("");
        oWnd.close();
    }

    function CloseAndRebind(args) {
        var oWnd = GetRadWindow()
        oWnd.BrowserWindow.refreshGrid(args);
        oWnd.SetUrl("");
        oWnd.close();
    }
</script>

这是父级的 refreshgrid 函数:

    <script type="text/javascript">
        function refreshGrid(arg) {
            if (!arg) {
                $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").ajaxRequest("Rebind");
            }
            else {
                $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").ajaxRequest("RebindAndNavigate");
            }
        }
    </script>

父级通过运行加载模式窗口:

    protected void btnSplitInvoice_Click(object sender, EventArgs e)
    {
        var btn = sender as Button;
        var item = (GridDataItem)btn.Parent.Parent;

        long id = long.Parse(item["Id"].Text);
        var itemType = this.TabStrip1.SelectedIndex == 0 ? "TransferOrderInvoice" : "EquipmentInvoice";

        string scriptstring = "var oWindow=radopen('../Misc/SplitInvoice.aspx?id=" + id + "&type=" + itemType + "','SplitInvoice');oWindow.SetModal(true);";
        ScriptManager.RegisterStartupScript(this, this.GetType(), "openwindow", scriptstring, true);
    }

孩子的保存按钮在后面的代码中做了很多工作,然后以这个结束:

ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "mykey", "CloseAndRebind('navigateToInserted');", true);

取消按钮设置如下:

<button type="button" class="CancelBtn" value="" onclick="CloseRadWindow()">
                        </button>

我发现不久前有一个条目建议添加window.open('', '_self', '');到结尾,但这似乎不适用(当我测试它时也没有工作)。

编辑:在控制台打开的情况下运行 Chrome 时,我确实看到在refreshgrid运行时在主页上出现错误:

Cannot call method 'ajaxRequest' of null

但不确定这是否是导致问题的原因。现在更深入地研究它。

EDIT2:所以问题似乎是在使用 Chrome 时,主页面中的 RadAjaxManager 在refreshGrid运行时似乎没有找到,这就是上述空错误的原因。我能够通过替换 refreshGrid 函数的内容来“解决”问题,并且效果document.location.reload();很好。不过,如果我能提供帮助,我宁愿不重新加载整个页面,所以想知道是否有办法解决这个问题。我很好奇为什么 IE 和 Firefox 似乎可以处理这个问题,而 Chrome 却没有?

可能有用的更多信息:主页的 Page_Load 事件:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!this.IsPostBack)
        {
            this.Session["AllUserLocationValue"] = string.Empty;

            this.InitializeThePage();
        }

        RadAjaxManager manager = RadAjaxManager.GetCurrent(this.Page);
        manager.AjaxRequest += this.manager_AjaxRequest;

        manager.AjaxSettings.AddAjaxSetting(manager, this.pnlHeading, this.RadAjaxLoadingPanel1);
        manager.AjaxSettings.AddAjaxSetting(manager, this.RadCodeBlock1, this.RadAjaxLoadingPanel1);

    }
4

2 回答 2

1

删除对 SetUrl("") 的调用,因为它开始处理当前页面,并且如果浏览器足够快,它将不会调用 close()。

如果您需要导航 RadWindow,您可以使用这三个选项之一

  • 将其 ReloadOnShow 属性设置为 true。通常与 ShowContentDuringLoad=false 一起使用

  • 将 DestroyOnClose 设置为 true。谨慎使用并在 close() 之前添加超时

  • 使用 OnClientClose 事件将 url 设置为空白页面

于 2013-03-26T14:03:53.317 回答
1

好的,我发现 Chrome 确实会一直“丢失”报告页面的母版页引用,或者至少在RadAjaxManager那里,而 Firefox 和 IE 没有(我可以追踪并观察 $find 对它们的工作)。

然而,我确实发现,Chrome(和其他两个)可以始终如一地找到报告的主网格(这是refreshGrid最终要寻找的)。所以我能够用以下内容替换胆量refreshGrid

function refreshGrid(arg) {
            var radgridNotApproved = $find("<%= rgNotApproved.ClientID %>").get_masterTableView();
            radgridNotApproved.rebind();
        }

并得到我正在寻找的行为。它也更干净;最初的版本refreshGrid看起来它可能原本打算做的不仅仅是重新绑定网格,但当我看到它的时候,这就是它真正所做的一切。

于 2013-03-27T16:42:39.057 回答