What’s New in the View?

What's New?

The latest SystemView Updates and release notes
<div class="whats-new-title"> 1.52 Release Notes </div> <div class="whats-new-date"> 16 Jan. 2023 </div> <p>The SystemView 1.52 release includes one key update to users, please see below:</p> <ul> <li>TeamView will no longer be accessible to end-users in SystemView, please use the Explore environment.&nbsp;If you require assistance to rebuild your Interact environment (including MyProjects, MyHubs, MyLists and notifications) please contact&nbsp;<a href="mailto:customersuccess@healthcarelogic.com">customersuccess@healthcarelogic.com</a></li> <li>The ICU Tic Toc board and the Allied Health Capacity and Demand Registers will remain visible to those who have access.</li> </ul> <p>All of the updates have been automatically applied to your account. But if you experience any issues, please try refreshing your browser, logging out, and logging back in.</p> <p>Thanks for helping us making SystemView better with each release.</p> <style> .whats-new-title { font-size: 30px; } .whats-new-date { font-size: 16px; margin-bottom: 30px; } </style>
<div class="related-content-container"> <h4>Related Content</h4> <ul> </ul> <div class="sticky-right"> <h4> What features would you like to see on SystemView? </h4> <a id="feedback" class="btn btn-secondary-transparent" data-toggle="modal" data-target="#exampleModalCenter">Suggest an Idea</a> </div> </div> <!-- Modal --> <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div id="before-submit" class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle">What features would you like to see on SystemView? </h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <textarea id="request-features" placeholder="Add as many details as possible"></textarea> </div> <div class="modal-footer"> <button id="submit" type="button" class="btn btn-primary">Submit</button> </div> </div> <div id="after-submit" class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle">Thanks for the suggestion!</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body d-flex justify-content-center"> <img src=/documents/44575/44577/thanksForSuggestion.svg/5488517f-aefd-1ef4-9bff-2858466d76d3?t=1662652598676&download=true alt="Thanks for suggestion" /> </div> <div class="modal-footer"> <button id="explore-more" type="button" class="btn btn-primary">Explore More</button> </div> </div> </div> </div> <!-- Modal end --> <style> .sticky-right { background: #F9E9D1; border-radius: 4px; padding: 15px; } .sticky-right h4 { font-size: 20px; } .sticky-right .btn { margin-top: 10px; } /* modal */ .modal { display: none; } .modal-dialog { max-width: 1000px; } .modal-title { font-size: 25px; } .modal-content { background-color: #fff; border-radius: 4px; padding: 25px 45px; } .modal-header { border: none; padding-left: 0; } .modal-header .close { font-size: 34px; font-weight: 100; } .modal-body { border: none; margin: 0; padding: 0; } .modal-body textarea { width: 900px; height: 150px; padding: 11px 16px; border: 1px solid #D1D2D4; } .modal-footer { justify-content: flex-end; border: none; } #after-submit { display: none; } </style> <script> jQuery(document).ready(function () { "use strict"; jQuery("#submit").click(function () { var signedin = Liferay.ThemeDisplay.isSignedIn(); var featuresVal = jQuery("#request-features").val(); if (!signedin) { var encodedCurrentUrl = encodeURIComponent(window.location.pathname); var redirectionUrlParams = "?p_p_id=com_liferay_login_web_portlet_LoginPortlet&_com_liferay_login_web_portlet_LoginPortlet_redirect=" + encodedCurrentUrl; window.location.href = "/sign-in-for-feature" + redirectionUrlParams; } else { jQuery.ajax({ url: "/o/academy/request-new-feature", type: "POST", data: JSON.stringify({ "requestedFeatures": featuresVal }), contentType: "application/json; charset=utf-8", dataType: "json", success: function (res) { if (res.status === "Success") { jQuery('#before-submit textarea').val(""); jQuery('#before-submit').css('display', 'none'); jQuery('#after-submit').css('display', 'block'); } else { jQuery("#before-submit").append("<p class='align-self-end'>There's something wrong. Please try later!</p>"); } } }) } }); jQuery("#explore-more").click(function () { window.location.href = "/support/what-s-new"; }); }) </script>