My app does a form.submit() that invokes an action that returns a FileResult (an attachment). Prior to submit I have javacript that puts up a "please wait" div. I need to clear it when the result is returned. For actions that return a response that writes the page, I use the window.onload event to clear the div, but that event doesn't fire when an attachment is returned.

It doesn't work to do something like form.submit();HidePleaseWait() because submit is asynchronous. Is there some other event that fires when an attachment is returned? Or, is there some way to combine multiple ActionResult so that I could update the page in the same response?

link|improve this question

62% accept rate
feedback

1 Answer

If you are using jQuery you should do the following.

$('selector').submit(function(event){
    event.preventDefault();
    // @Hiding
    // Do your AJAX call
    $.ajax({
        url: "test.html",
        success: function(){
            // @What to do when done
        }
    });
});
link|improve this answer
+1, But why the event.preventDefault();? – gdoron Jan 9 at 2:04
What would I do in the "what to do when done" block? I know I can hide my pleasewait div, but I'd also have to handle the attachment response. I know how to handle "normal" responses that would have me, for example, replace content, but I don't know how to handle this. – Elroy Flynn Jan 9 at 2:20
Well, if you want to send a form WITHOUT reloading the page you would change it to an AJAX call. It avoid the browser from moving into the action address. – fabianhjr Jan 9 at 2:46
I don't think your answer addresses my problem, unless you can describe how to handle the attachment-result. – Elroy Flynn Jan 9 at 2:55
success(data, textStatus, jqXHR) You could receive data and handle it with jQuery. Just change the anonymous function to 3 arguments. – fabianhjr Jan 9 at 2:58
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.