REST service: beforeSend
Posted: Thu May 24, 2012 2:37 pm
Is there an opportunity to call the ajax method "beforeSend"? I can only find the events Complete, Success and Error in Tiggzi. Can I do this programmatically?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Is there an opportunity to call the ajax method "beforeSend"? I can only find the events Complete, Success and Error in Tiggzi. Can I do this programmatically?
You can try this:
code
serviceInstanceName.execute({
beforeSend: function (....){
....
}
})
/code