Hide Request Failure default popup window

  1. #1

    Hide Request Failure default popup window

    Hi,

    How can i prevent the display of the popup window, i'm sending multiple request to the server and some of them may fail and thats ok but i don't want to receive a message notifying the failure.

    Below is an screenshot...

    Thanks

    Click image for larger version. 

Name:	transaction aborted.png 
Views:	329 
Size:	23.7 KB 
ID:	3669
  2. #2
    Hi,

    To switch it off globally, please set up:

    Example 1
    <ext:ResourceManager runat="server" ShowWarningOnAjaxFailure="false" />
    Or there are respective properties in separate controls, for example, Store:

    Example 2
    <ext:Store runat="server" ShowWarningOnFailure="false">
    Also there is a possibility to handle AJAX exception case:

    Example 3
    <ext:ResourceManager runat="server" ShowWarningOnAjaxFailure="false">
        <Listeners>
            <AjaxRequestException Handler="alert('Failure);" />
        </Listeners>
    </ext:ResourceManager>
  3. #3
    Thank you...

Similar Threads

  1. Replies: 4
    Last Post: Feb 16, 2012, 2:05 AM
  2. Replies: 16
    Last Post: Oct 04, 2011, 5:17 PM
  3. [CLOSED] [1.0] Request Failure Window
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Apr 15, 2010, 8:33 AM
  4. [CLOSED] Configure default AjaxEvent failure window
    By jchau in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Jun 15, 2009, 10:55 AM
  5. Replies: 2
    Last Post: Nov 26, 2008, 12:17 PM

Posting Permissions