Posts by Fabio de Paula • 1 point
2 posts
-
0
votes1
answer160
viewsA: Treat Exception on return from Ajax jsonp
I was able to solve this problem by putting a timeout on the ajax call. Unfortunately I could not otherwise. Apparently when my service returns an Exception jquery is lost and cannot unmount…
-
0
votes1
answer160
viewsQ: Treat Exception on return from Ajax jsonp
Personally I’m making the service call this way: $.ajax({ url: minhaurl, type: "GET", dataType: "jsonp", contentType: "application/json; charset=utf-8", async: false, success: function (result,…