如何在发布商门户网站中自定义EDIT标签?(how can I customize EDIT tab inside publisher portal?)

我想自定义wso2注册表的发布者门户的EDIT选项卡。 目前我们有以下项目:

概述分类联系人界面安全性Doc链接标记分类

我想在分类下添加一个项目,例如下面:“分类”,带有下拉菜单 - 重要,关键,自由裁量

请让我来寻找什么以及在哪里寻找以实现这一目标。

I wanted to customize EDIT tab of publisher portal of wso2 registry. Currently we have below items:

Overview Categorization Contacts Interface Security Doc links Tags Taxonomy

I want to add one more item under Categorization such as below: "Classification" with drop down menu - vital, critical, discretionary

Please let me what to look for and where to look for in order to achieve this.

最满意答案

您需要做的是编辑相关的RXT并在表分类下添加一个field元素,如下所示

<field type="options" categorization="true"> <name label="Classification">Classification</name> <values> <value>Vital</value> <value>Critical</value> <value>Discretionary</value> </values> </field>

请在此处找到相关文档以配置分类选项。

What you need to do is edit the relevant RXT and add a field element under the table categorization as follows

<field type="options" categorization="true"> <name label="Classification">Classification</name> <values> <value>Vital</value> <value>Critical</value> <value>Discretionary</value> </values> </field>

Please find the relevant documentation here to configure categorization options.

如何在发布商门户网站中自定义EDIT标签?(how can I customize EDIT tab inside publisher portal?)

我想自定义wso2注册表的发布者门户的EDIT选项卡。 目前我们有以下项目:

概述分类联系人界面安全性Doc链接标记分类

我想在分类下添加一个项目,例如下面:“分类”,带有下拉菜单 - 重要,关键,自由裁量

请让我来寻找什么以及在哪里寻找以实现这一目标。

I wanted to customize EDIT tab of publisher portal of wso2 registry. Currently we have below items:

Overview Categorization Contacts Interface Security Doc links Tags Taxonomy

I want to add one more item under Categorization such as below: "Classification" with drop down menu - vital, critical, discretionary

Please let me what to look for and where to look for in order to achieve this.

最满意答案

您需要做的是编辑相关的RXT并在表分类下添加一个field元素,如下所示

<field type="options" categorization="true"> <name label="Classification">Classification</name> <values> <value>Vital</value> <value>Critical</value> <value>Discretionary</value> </values> </field>

请在此处找到相关文档以配置分类选项。

What you need to do is edit the relevant RXT and add a field element under the table categorization as follows

<field type="options" categorization="true"> <name label="Classification">Classification</name> <values> <value>Vital</value> <value>Critical</value> <value>Discretionary</value> </values> </field>

Please find the relevant documentation here to configure categorization options.