Outlook加载项OWA iOS无法加载

时间:2018-08-20 00:20:40

标签: outlook-addin office-js

我对清单不能解决的问题感到有些困惑,因为我的加载项不会在Outlook 365的网络版本上加载。它可以在本机iOS Outlook和Outlook.office365的桌面Web浏览器上很好地加载.com。我按照提供的有关如何添加MobileFormFactor的示例进行操作,但是在阅读电子邮件时无法显示图标。

我的清单验证程序说我到目前为止还好。 Manifest Validation

这是我的清单。

          <MobileFormFactor>

            <ExtensionPoint xsi:type="MobileMessageReadCommandSurface">
            <Group id="mobileMsgRead">
                <Label resid="groupLabel" />
                <Control xsi:type="MobileButton" id="TaskPaneBtn">
                  <Label resid="restpaneReadButtonLabel" />
                  <Icon xsi:type="bt:MobileIconList">
                    <bt:Image size="25" scale="1" resid="mobile-32" />
                    <bt:Image size="25" scale="2" resid="mobile-32" />
                    <bt:Image size="25" scale="3" resid="mobile-32" />

                    <bt:Image size="32" scale="1" resid="mobile-32" />
                    <bt:Image size="32" scale="2" resid="mobile-32" />
                    <bt:Image size="32" scale="3" resid="mobile-32" />

                    <bt:Image size="48" scale="1" resid="mobile-32" />
                    <bt:Image size="48" scale="2" resid="mobile-32" />
                    <bt:Image size="48" scale="3" resid="mobile-32" />
                  </Icon>
                  <Action xsi:type="ShowTaskpane">
                    <SourceLocation resid="readTaskPaneUrl" />
                  </Action>
                </Control>
             </Group>
            </ExtensionPoint>
          </MobileFormFactor>

1 个答案:

答案 0 :(得分:0)

尝试在<Form>元素的末尾添加以下内容:

  <TabletSettings>
    <SourceLocation DefaultValue="https://dev2.practicepanther.com/outlook" />
    <RequestedHeight>250</RequestedHeight>
  </TabletSettings>
  <PhoneSettings>
    <SourceLocation DefaultValue="https://dev2.practicepanther.com/outlook" />
  </PhoneSettings>

有帮助吗?