Intercepting All Ajax Calls ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Microsoft Newsserver

    Intercepting All Ajax Calls ?

    Hi,

    I am using VS2005/.Ajax 1.1 . I need to mask the screen during async calls
    back to the server. I can do this by surrounding the whole screen with a
    filtered div to prevent click throughs to controls.

    The issue is how or when to turn the filter on the div on. Basically, I need
    to know how to intercept any of the async calls and turn the div filter on,
    which I then turn off again during page load.


    Any ideas ?


  • =?Utf-8?B?YnJ1Y2UgYmFya2Vy?=

    #2
    RE: Intercepting All Ajax Calls ?

    see PageRequestMana ger methods:

    add_beginReques t(BeginRequestH andler);
    add_endRequest( EndRequestHandl er);


    -- bruce (sqlwork.com)


    "Microsoft Newsserver" wrote:
    Hi,
    >
    I am using VS2005/.Ajax 1.1 . I need to mask the screen during async calls
    back to the server. I can do this by surrounding the whole screen with a
    filtered div to prevent click throughs to controls.
    >
    The issue is how or when to turn the filter on the div on. Basically, I need
    to know how to intercept any of the async calls and turn the div filter on,
    which I then turn off again during page load.
    >
    >
    Any ideas ?
    >
    >
    >

    Comment

    • Microsoft Newsserver

      #3
      Re: Intercepting All Ajax Calls ?


      Cheers Bruce. I'll look those up.


      "bruce barker" <brucebarker@di scussions.micro soft.comwrote in message
      news:BA482677-8EA6-4625-9DB0-AACC50958CCE@mi crosoft.com...
      see PageRequestMana ger methods:
      >
      add_beginReques t(BeginRequestH andler);
      add_endRequest( EndRequestHandl er);
      >
      >
      -- bruce (sqlwork.com)
      >
      >
      "Microsoft Newsserver" wrote:
      >
      >Hi,
      >>
      >I am using VS2005/.Ajax 1.1 . I need to mask the screen during async
      >calls
      >back to the server. I can do this by surrounding the whole screen with a
      >filtered div to prevent click throughs to controls.
      >>
      >The issue is how or when to turn the filter on the div on. Basically, I
      >need
      >to know how to intercept any of the async calls and turn the div filter
      >on,
      >which I then turn off again during page load.
      >>
      >>
      >Any ideas ?
      >>
      >>
      >>

      Comment

      Working...