We have implemented the IT Hit WebDAV sever on our website and are currently testing it before purchasing.
One of the tests we have done is test it in different browsers and operating systems. We have found that in Vista and the Latest Chrome it shows the message Microsoft Office not available when office is installed and working and the page works in other browser/OS combinations.
We are using the JavaScript from IT Hit which has not been changed. Below is the code (TypeScript Code) I have used on the button:
//Gets an instance of ITHIT DocManager
var oNs = ITHit.WebDAV.Client.DocManager;
if (oNs.IsMicrosoftOfficeAvailable()) {
oNs.MicrosoftOfficeEditDocument(responseData.documentUrl);
} else {
editBtn.html(officeNotAvailableLang);
}
Before Clicking Edit
Office not available error
Office is installed on the machine
Is this a known issue and can it be fixed?