Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Version 

HTML
<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.7">5.0.7</option>
	<option value="5.0.70">5.0.0</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>



UI Tab
title5.0.7

Incident Meshlet 

Release Date: July 10, 2020

Section
bordertrue


Column
width15%

New Features


Column
width85%
  • Integrate Azure DevOps incident with other Perspectium-supported ITSM applications.
Show If
special@authenticated

Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-10723





UI Tab
title5.0.0

Change Request Meshlet 

Release Date: March 26, 2020

Section
bordertrue


Column
width15%

New Features


Column
width85%
  • Integrate Azure DevOps work item tasks with other Perspectium-supported ITSM applications change request .
Show If
special@authenticated

Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-8009






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