Open POPUP window in Outlook web addin from Command button

試著忘記壹切 提交于 2019-12-24 10:29:32

问题


I am trying to open a small popup window from Command button in Outlook web addin . Below is the method (function () {

// The initialize function must be run each time a new page is loaded
Office.initialize = function (reason) {
    $(document).ready(function () {
        ShowPopup();
    });
};

 function loadItemProps(item) {
Office.context.ui.displayDialogAsync('https://myAddinDomain/myDialog.html');

}

But it is not working , no error .

来源:https://stackoverflow.com/questions/49860113/open-popup-window-in-outlook-web-addin-from-command-button

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