0

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.

Community
  • 1
  • 1
Alwaysalearner
  • 85
  • 1
  • 1
  • 10

1 Answers1

1

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.

madawa
  • 496
  • 6
  • 24