Version 

<style> 
.version {
	height: 25px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
</style>
<select class="version" id="version" onchange="showContent()">
    <option value="5.0.12">5.0.12</option>
	<option value="5.0.8">5.0.8</option>
</select>
<script> 
function showContent() {
	var dropdown = document.getElementById("version"); 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == dropdown.value) {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
}
</script>



Incident Meshlet 

Release Date: October 15, 2020


Enhancements


  • Added the ability to receive and process multiple attachments from a single payload.






Incident Meshlet 

Release Date: June 22, 2020


Enhancements


  • Integrate your DXC incidents to other Perspectium-supported ITSM applications. Get started with ServiceGateway for DXC by contacting Perspectium Support.





Bug Fixes


  • Fixed an issue where DXC Incidents are not getting resolved and misrouted.

CS0007796



User Meshlet 

Release Date: June 22, 2020


Enhancements


  • Common document for User table is now available for Service Gateway. Integrate your DXC users with the support of Common User. 






<script> 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == "5.0.12") {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
</script>