In IXIA CCMS Web, the information that appears in each column of the Dynamic Grid is based on an index. The Dynamic Grid has some default columns configured, but you can make additional indexes available as columns.
Procedure
- In the TEXTML Administration perspective, connect to your server.
- Expand the Content Store's Repository node, and locate the additionalColumnDefinitions.xml file in the /system/webplatform/configuration/ collection.
-
Check out the file and open it for editing.
- As a child element of
<columnDefinitions>
, add a <columnDefinition>
element and give it an indexName
attribute and value.
The value for the indexName
attribute should be the name of
the index you created or verified in Index Definitions. This index must also
be listed in the <summary NAME="ixiasoftccmssummary">
section of Index Definitions.
You can use any index defined in that section.
For example, this creates a column to display the original filename of
imported maps, topics, and
image.
<columnDefinition indexName="originalFilename">
</columnDefinition>
- Add a
columnType
attribute and value.
The value for the
columnType
attribute depends on the index and the type of
information to display. Choose one of the following:
<columnDefinition indexName="originalFilename" columnType="string">
</columnDefinition>
-
Within the
<columnDefinition>
element, add a
<captions>
element and one
<caption>
element for each interface language used in
CCMS Web.
For example:
<columnDefinition indexName="originalFilename" columnType="string">
<captions>
<caption lang="en" ></caption>
<caption lang="fr"></caption>
<caption lang="de"></caption>
<caption lang="ja"></caption>
</captions>
</columnDefinition>
- For each
<caption>
element, add a displayText
attribute, where the value is the UI string that users see and select in CCMS Web for that language.
For example:
<columnDefinition indexName="originalFilename" columnType="string">
<captions>
<caption lang="en" displayText="Original Filename"></caption>
<caption lang="fr" displayText="Nom de Fichier Original"></caption>
<caption lang="de" displayText="Originaldatiname"></caption>
<caption lang="ja" displayText="元のファイル名"></caption>
</captions>
</columnDefinition>
-
Save, close, and check in the file.
-
Refresh the Web Server.
-
Refresh the browser cache if the new column is not available after
refreshing the Web Server.