How can I add a custom column to a locater search with added attribute to a locater search?
search cancel

How can I add a custom column to a locater search with added attribute to a locater search?

book

Article ID: 12220

calendar_today

Updated On:

Products

Spectrum

Issue/Introduction

When creating a locater search you can add an additional column to display an additional attribute. The example below shows how to add a column with Firmware attribute displayed but you can use others instead.

How to add a custom column to a locator search to display a custom attribute?

Environment

Any

Resolution

Customizing columns will not work for all default Locator Searches.

 

Follow the below steps to add an additional column in the contents pane that once completed can be added by right clicking the header and adding.

1.      Create a XML file under the path $SPECROOT/custom/topo/config

                  Ex: table-searchresults-config.xml

2.      Paste the below content in the XML which you created and save it.

<?xml version="1.0" encoding="utf-8" ?>

<table idref="table-searchresults-config">
      <column-list>
            <column>
                  <name>PollInterval</name>
                  <content>
                        <attribute>0x10071</attribute>
                  </content>
            </column>
            <column>
                  <name>DCM Timeout</name>
                  <content>
                        <attribute>0x110c4</attribute>
                  </content>
            </column>
            <column>
                  <name>DCM Retry Count</name>
                  <content>
                        <attribute>0x110c5</attribute>
                  </content>
            </column>
      </column-list>
</table>

3.  After the file is saved, all OneClick clients will need to be closed and re-opened in order to see the new values.