2

我有一个 C# Web 应用程序,它向用户提供报告,有时报告需要几分钟才能生成(而不是几秒钟)。

我有一个RadTreeViewReportType”链接,单击时RadAjaxRequest使用RadAjaxManager客户端执行一个。

function RadTreeviewNodeClicked(sender, eventArgs) {
            try {
                console.log("fired again: " + eventArgs.get_node().get_text());
                var radAjaxManager = $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>");
                radAjaxManager.ajaxRequest("NodeClicked");
            } catch (error) {
                console.log("error on nodeclicked");
            }
        }

 //from my pageload
 radAjaxManager1 = RadAjaxManager.GetCurrent(Page);
 radAjaxManager1.AjaxRequest += RadAjaxManager1_AjaxRequest;
 radAjaxManager1.ResponseScripts.Add("AttachJQueryUIDateTimePickers();");
 radAjaxManager1.AjaxSettings.AddAjaxSetting(radAjaxManager1,pnlRightContent,RadAjaxLoadingPanel1);
 radAjaxManager1.ClientEvents.OnResponseEnd = "ResponseEnd";

服务器上的ajaxRequest处理程序为单击的链接加载相应的报告,并将其显示在 asp:panel 的右侧。菜单和面板都包含在一个RadAjaxPanel.

如果报表数据仍在加载(存储过程正在执行)并且用户单击另一个链接:

  • 客户端事件被触发
  • 服务器完成第一个事件
  • respondeEnd 事件被触发
  • 服务器开始处理第二个事件

单击后续事件时,我想放弃/中止第一个事件。这可能吗?

4

1 回答 1

0

通过将 rad Ajax 管理器的队列大小设置为 0,我发现 Telerik 是可能的:

        radAjaxManager1.RequestQueueSize = 0;
于 2013-10-21T14:09:14.817 回答