App 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.2">5.0.2</option> <option value="5.0.0">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> |
Bulk shares allow for one-time sharing of ServiceNow records. Bulk shares can contain conditions and can also be configured to contain a group of scheduled bulk shares to be run in an order that you can specify.
You will need to install the Perspectium DataSync Express application.
To create a DataSync Express bulk share, follow these steps:
|
|
<script> var tabs = document.getElementsByClassName("rwui_tab_content"); for (var i = 0; i < tabs.length; i++) { if (tabs[i].getAttribute("data-name") == "5.0.2") { tabs[i].style.display = ""; } else { tabs[i].style.display = "none"; } } </script> |