Before (and even for a short time during) the update problems I was able to use JSON.stringify and/or JSON.parse to manipulate the success-event response to my get_top10_addresses service.
I now have tried all manner of combinations and am unable to do it after the rollback - so I don't know if I'm doing something wrong or there's been a change in the success object. Can you please show me the code to be able to manipulate what's being returned by the service on the success event. Thank you.
function bobService(v,v2){
get_top10_addresses.execute({
success: function(jqXHR) {
//WORKS alert('success with latlon ' + v + ' which is iteration number ' + v2);
},
error: function( e ) {
//Error handler here
},
complete: function(jqXHR) {
//Complete handler here
},
});
}