fires on successful save response
request | object | a JSON object with request parameters |
response | object | a JSON object with response |
fmanager.attachEvent("onSuccessResponse", function(request, response){
// your code here
});
Returning false within the handler blocks further processing and success callback will not be executed.
Back to top