How to disable/hide the "Create Classification Scheme" link under the "Browse and Search" page?

How to disable/hide the "Create Classification Scheme" link under the "Browse and Search" page?

book

Article ID: KB0090603

calendar_today

Updated On:

Products Versions
TIBCO Collaborative Information Manager -
Not Applicable -

Description

Resolution:

Description:
============
Out-of-the-box, it's not possible to disable/hide the "Create Classification Scheme" link under the "Browse and Search" page. But this can be done using custominit.html. The custominit.html is to be placed under the $MQ_COMMON_DIR/$MQ_COMMON_DIR/&ltenterprise_short_name>/htmlprops/ directory.


Environment:
===========
TIBCO Collaborative Information Manager (CIM) 8.X.X

Resolution:
==========
The following is a sample script.

&ltSCRIPT id="customInitId" language="JavaScript" type="text/javascript">    

function customInit(){



try{

    var browseForm = document.getElementById("idbrowserepository");

    if( browseForm != null ){

        var elm = document.getElementById("ProductSearch_3");

        elm.parentNode.removeChild(elm);

    }

} catch(eee){}

}

</SCRIPT>

Issue/Introduction

How to disable/hide the "Create Classification Scheme" link under the "Browse and Search" page?