we are using an "IT Hit WebDAV AJAX Library Redistribution Licence" library.
We have been using successfuly this library for this workflow: 1) the client clicks on a button en the webpage 2) the webpage finds a document on a webdav server 3) the plugin connects the webdav document with Ms Office Word of the client. 4) the client updates the content of the document 5) the client saves his changes. This changes are reflected and stored in the webdav storage.
Our problem is: We need to add these following tasks in this workflow:
6) the client closes the Ms Office Word application 7) the wepage is notified that the client has closed the webdav document 8) the webpage do something with that information ....
We don't know how to get a callback from your library, in order to trigger many tasks that are necessary for our logic.
We are using this code for open the document:
function editWordVersion(document_url){
oNs= ITHit.WebDAV.Client.DocManager;
oNs.EditDocument(document_url);
}
We Appreciate any way or alternative for doing this with your library.