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.1">5.0.1</option> <option value="5.0.3">5.0.3</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> |
First, you will need to install the Perspectium DataSync Free application.
For domain-separated instances, you must be in the global domain to install the application.
To set the initial configurations for your DataSync Free app, 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.1") { tabs[i].style.display = ""; } else { tabs[i].style.display = "none"; } } </script> |