- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为实现 add-in commands 的 Outlook 加载项上传 list 文件时,我收到以下错误:
Something went wrong
This app can't be installed. The manifest file doesn't conform to the schema definition. The element 'CustomTab' in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides' has invalid child element 'Label' in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides'. List of possible elements expected: 'Group in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides'...
但是,Label
元素是 CustomTab
元素的有效子元素。我该如何解决这个问题?
最佳答案
简短回答:确保 Label
元素出现在 CustomTab
元素内的所有 Group
元素之后。
Office 365 最近在 list 文件上启用了额外的模式验证,并且由于为 CustomTab
元素定义模式的方式,它希望 Label
紧随其后。
换句话说,具有此 CustomTab
元素的 list 将触发错误:
<CustomTab id="TabCustom1">
<Label resid="customTabLabel1"/>
<Group id="group1">
<Label resid="groupLabel1"/>
<Control xsi:type="Button" id="uilessButton1">
<Label resid="uilessButtonLabel1"/>
<Supertip>
<Title resid="uilessButtonSuperTipTitle1"/>
<Description resid="uilessButtonSuperTipDesc1"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="uilessButtonIcon1-16"/>
<bt:Image size="32" resid="uilessButtonIcon1-32"/>
<bt:Image size="80" resid="uilessButtonIcon1-80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>buttonFunction1</FunctionName>
</Action>
</Control>
</Group>
</CustomTab>
将其更改为此将解决错误:
<CustomTab id="TabCustom1">
<Group id="group1">
<Label resid="groupLabel1"/>
<Control xsi:type="Button" id="uilessButton1">
<Label resid="uilessButtonLabel1"/>
<Supertip>
<Title resid="uilessButtonSuperTipTitle1"/>
<Description resid="uilessButtonSuperTipDesc1"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="uilessButtonIcon1-16"/>
<bt:Image size="32" resid="uilessButtonIcon1-32"/>
<bt:Image size="80" resid="uilessButtonIcon1-80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>buttonFunction1</FunctionName>
</Action>
</Control>
</Group>
<Label resid="customTabLabel1"/>
</CustomTab>
关于office365 - 上传 Outlook 加载项 list 时“ list 文件不符合架构定义”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34969479/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!