我在页面属性>基本中添加了一个新的选择类型字段“主题”。现在,如果我在 WCM 中使用相同的模板添加一个新页面,我还会看到“主题”选项,这很明显。有什么方法可以隐藏子页面中的字段吗?
PS 发生这种情况是因为我为子页面使用了相同的模板。
我在页面属性>基本中添加了一个新的选择类型字段“主题”。现在,如果我在 WCM 中使用相同的模板添加一个新页面,我还会看到“主题”选项,这很明显。有什么方法可以隐藏子页面中的字段吗?
PS 发生这种情况是因为我为子页面使用了相同的模板。
您不能使用相同的模板并使页面属性对话框不同。
你可以做的是重载对话框
然后,您必须在页面 jsp 中包含代码以获取父页面属性,例如:
// if the parent page is always a certain level below the root you can use
// currentPage.getAbsoluteParent(3); to get the third page down from the top
// of the current path tree.
Page parentPage = currentPage.getParent();
ValueMap parentPageProperties;
if (parentPage != null) {
parentPageProperties = parentPage.getProperties();
}
// This tries to get the property 'theme' from the current page. If that fails
// then it tries to get the property from the parent page. If that fails it
// defaults to blank.
theme = properties.get("theme", parentPageProperties.get("theme", ""));
一个快速的解决方案也是创建第二组模板/页面组件。假设您有模板 A,它使用页面组件 B 作为资源类型: