<formsettings>没有加载新的外观

时间:2018-10-16 15:00:09

标签: outlook office365 outlook-addin outlook-web-addins

我有一个使用<FormSettings>作为UI的加载项,此加载项在当前owa中可以正常工作,但未在“新Outlook”上加载

enter image description here

enter image description here

这是预期的吗?还是因为新的前景仍处于测试阶段而发生。?

当前OWA: enter image description here

新展望: enter image description here

以下是该加载项的清单xml代码段:

<Hosts>
    <Host Name="Mailbox" />
</Hosts>
<Requirements>
    <Sets>
        <Set Name="MailBox" MinVersion="1.1" />
    </Sets>
</Requirements>
<FormSettings>
    <Form xsi:type="ItemRead">
        <DesktopSettings>
            <SourceLocation DefaultValue="https://<url-i-replaced>/index.html"/>
            <RequestedHeight>210</RequestedHeight>
        </DesktopSettings>
        <TabletSettings>
            <SourceLocation DefaultValue="https://<url-i-replaced>/index.html"/>
            <RequestedHeight>210</RequestedHeight>
        </TabletSettings>
        <PhoneSettings>
            <SourceLocation DefaultValue="https://<url-i-replaced>/index.html"/>
        </PhoneSettings>
    </Form>
</FormSettings>
<Permissions>ReadWriteMailbox</Permissions>
<Rule xsi:type="RuleCollection" Mode="Or">
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" />
</Rule>
<DisableEntityHighlighting>false</DisableEntityHighlighting>

过去两年来,清单xml中没有任何更改。

在Edge,Firefox和Chrome上发现了此问题。

1 个答案:

答案 0 :(得分:1)

屏幕快照和清单显示了问题-已弃用您正在使用的加载项样式,新的Outlook Web中不支持该样式。您应该升级外接程序,以使用Add-in Commands model继续在Outlook Web中工作。