Products | Versions |
---|---|
TIBCO Collaborative Information Manager | - |
Not Applicable | - |
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/<enterprise_short_name>/htmlprops/ directory.
Environment:
===========
TIBCO Collaborative Information Manager (CIM) 8.X.X
Resolution:
==========
The following is a sample script.
<SCRIPT 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>