[CLOSED] Request Failure

  1. #1

    [CLOSED] Request Failure

    Hi


    I am getting error Request failure
    Status Code: 200 and
    Status Text: NoResponse

    Actually I have window, and there is button to save the data, when I click the button to save the data then I get that error

    Is there technical issue with ??

    I have also attach the image
    Click image for larger version. 

Name:	ServerError.PNG 
Views:	27 
Size:	59.2 KB 
ID:	8331
    Last edited by Daniil; Mar 17, 2014 at 12:52 PM. Reason: [CLOSED]
  2. #2
    Hi @jesperhp,

    Hard to say what is going wrong.

    Please post the server method for saving. Also how do you call that server method from client?
  3. #3
    Quote Originally Posted by Daniil View Post
    Hi @jesperhp,

    Hard to say what is going wrong.

    Please post the server method for saving. Also how do you call that server method from client?
    <ext:Button ID="btnUnitsEdit" Text="<%$Resources:HelpDeskWebApp,Edit%>" runat="server"
        Icon="ApplicationEdit" Hidden="true">
        <DirectEvents>
            <Click Before="
            alert('working');
            var GridId = Units.UnitsGridId();
            var Grid = Ext.getCmp(GridId);       
           if(true)
            {
               Units.setIdByIndex(Units.getIndex(),Grid);
               var isLoaded = Units.isUnitDetailLoaded();
               if (isLoaded) 
               {              
                  Units.ShowDetailof(Units.getIndex(),Grid);
               }
               return !isLoaded;
           }
           else
            {
                  var Status = User.getAlertMessage();
                  var result = User.getEditMessage();
                  Ext.Msg.alert(Status,result);
                  return false;
            }" Json="true" Method="POST" Url="/DynamicWindow/LoadNewWindow" Success="        
                var i=Units.getIndex();
                var code='Units.ShowDetailof('+i+',null)';      
                setTimeout(code,560);
                " CleanRequest="true">
                <ExtraParams>
                    <ext:Parameter Name="container_Id" Value="Units.UnitsDetailPanelId()" Mode="Raw">
                    </ext:Parameter>
                    <ext:Parameter Name="controlToRender_Id" Value="control_Dynamic_Units">
                    </ext:Parameter>
                    <ext:Parameter Name="viewName" Value="~/Views/Units/UnitsDetail.ascx">
                    </ext:Parameter>
                </ExtraParams>
            </Click>
        </DirectEvents>
    </ext:Button>
    
    Please mark it close 
    the issue was when I call server side url the property Json= true 
    now I remove that property and it working fine 
    Thanks

Similar Threads

  1. [CLOSED] Request Failure box with HttpProxy
    By tdracz in forum 1.x Legacy Premium Help
    Replies: 13
    Last Post: Sep 30, 2013, 5:07 AM
  2. Replies: 16
    Last Post: Oct 04, 2011, 5:17 PM
  3. Ambiguous Request Failure
    By yaser82 in forum 1.x Help
    Replies: 8
    Last Post: Apr 27, 2009, 11:13 AM
  4. Request Failure!
    By jachnicky in forum 1.x Help
    Replies: 8
    Last Post: Dec 11, 2008, 6:11 AM
  5. Request Failure!
    By jachnicky in forum 1.x Help
    Replies: 0
    Last Post: Dec 11, 2008, 3:26 AM

Posting Permissions