mapping stopping when coding succes?
Hello there,
With the help of your forum posts, I worked out how to deal with services working from script. But now it seems like filling local vars from the response, is not operating any more. Like appery is either triggering the succes actions I scripted, or the map I did in the GUI, but not both.
Is this either to be expected, or would you think I made some stupid mistake?
Here's my basic syntax:
serviceInstance.execute({
Code: Select all
data: {var1:"valuevar1"}.
success : function(data){
// things to do on success
},
error : function(data){
// things to do on error
}
});