ITHit WebDAV - Office not available message showing when Office is installed

假如想象 提交于 2019-12-11 07:52:43

问题


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?


回答1:


This could be because the Microsoft Office plugin is disabled in your web browser for some reason. To enable the plugin:

  • In case of Google Chrome plugins could be found here: chrome://plugins:

  • In case of FireFox they are in Options Menu -> Addons -> Plugins tab:

  • In case of IE they are under Tools Menu -> Manage Add-ons. Make sure you select 'All add-ons' in Show dropdown:



来源:https://stackoverflow.com/questions/26674684/ithit-webdav-office-not-available-message-showing-when-office-is-installed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!