Page 1 of 1

REST service: beforeSend

Posted: Thu May 24, 2012 2:37 pm
by janick.eisert

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?


REST service: beforeSend

Posted: Thu May 24, 2012 5:13 pm
by maxkatz

You can try this:

code
serviceInstanceName.execute({
beforeSend: function (....){
....
}
})
/code

http://api.jquery.com/jQuery.ajax/