How to disable hyperlinks from the WORKITEM description
book
Article ID: KB0077531
calendar_today
Updated On:
Description
Whenever the user wants to disable the hyperlinks from workitem description, then use the steps mentioned in the resolution.
It will disable the hyperlinks from the workitem description, so you are not able to access the redirected pages.
Issue/Introduction
How to disable hyperlinks from the WORKITEM description
Environment
Product: TIBCO MASTER DATA MANAGEMENT
Version: All supported versions
OS: All Supported Operating Systems
Resolution
Follow the below steps to disable the hyperlinks in workitem description:
-Navigate to the MQ_HOME\common\ENTERPRISE_NAME\htmlprops
-Create custominit.html file, if file not exist.
-Paste the below code in custominit.html file
--------------------------
<script type="text/javascript">
/**********************************************************************************************************************************
*
* function: customInit
*
* description: disable the hyperlinks of INBOX page from workitem description.
*
*********************************************************************************************************************************/
function customInit(){
showPopup = function(event) {
//alert("Your code here");
return false;
}
}
</script>
---------------------------------------------------------
-Save the file and just refresh the MDM UI and check the workitem description, the hyperlinks get disabled.
Additional Information
javascript language
Feedback
thumb_up
Yes
thumb_down
No