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?
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