我为 SDL Tridion 创建了一个新编辑器,它为功能区栏添加了一些新功能。这是通过将以下代码段添加到 editor.config 来启用的
<!-- ItemCommenting PowerTool -->
<ext:extension assignid="ItemCommenting" name="Save and<br/>Comment" pageid="HomePage" groupid="ManageGroup" insertbefore="SaveCloseBtn">
<ext:command>PT_ItemCommenting</ext:command>
<ext:title>Save and Comment</ext:title>
<ext:issmallbutton>false</ext:issmallbutton>
<ext:dependencies>
<cfg:dependency>PowerTools.Commands</cfg:dependency>
</ext:dependencies>
<ext:apply>
<ext:view name="*" />
</ext:apply>
</ext:extension>
这通过在节点中使用通配符值应用于所有视图。这导致我的新按钮被添加到每个视图的功能区中,包括主仪表板。有没有办法将此添加到除仪表板之外的所有视图中?还是我必须创建这样的东西?
<ext:apply>
<ext:view name="PageView" />
<ext:view name="ComponentView" />
<ext:view name="SchemaView" />
</ext:apply>
如果这是实现我需要的结果的唯一方法,那么某处是否有所有视图名称的列表?