diff --git a/src/main/webapp/scripts/project/userMgmt.js b/src/main/webapp/scripts/project/userMgmt.js index 84d22a919bb7e391302f3e29169bd69949fbefc2..ac7725bc4c050b461c4d0ca177ba580d1078a724 100644 --- a/src/main/webapp/scripts/project/userMgmt.js +++ b/src/main/webapp/scripts/project/userMgmt.js @@ -277,7 +277,8 @@ function UserManager(user_mgmt_div_id, pID, retrieveAllUsers){ } else { this.setFormDisabled(false); document.getElementById("popup_all_users_button").disabled = true; - document.getElementById("popup_all_users_button_container").title = "Access to the system user list is restricted to administrators only. You can add users by username or email in the Add/Invite User control above." + document.getElementById("popup_all_users_button_container1").style.visibility = "hidden"; + document.getElementById("popup_all_users_button_container2").style.visibility = "hidden"; } this.allLoader.close(); }; diff --git a/src/main/webapp/xnat-templates/screens/xnat_projectData/xnat_projectData_summary_management.vm b/src/main/webapp/xnat-templates/screens/xnat_projectData/xnat_projectData_summary_management.vm index fb9e0fc6e181f74910e0e7d4237563b9da36d337..9fbd5cf16fd16d767b535b6d58e12c7dfa831b96 100644 --- a/src/main/webapp/xnat-templates/screens/xnat_projectData/xnat_projectData_summary_management.vm +++ b/src/main/webapp/xnat-templates/screens/xnat_projectData/xnat_projectData_summary_management.vm @@ -31,13 +31,13 @@ <TD COLSPAN="3"> </TD> </TR> #if($showUserList) - <TR> + <TR id="popup_all_users_button_container1"> <TD COLSPAN="3"><h4 id="user_list_header" style="margin-bottom:0px">Add Users from List</h4> </TD> </TR> - <TR> + <TR id="popup_all_users_button_container2"> <TD COLSPAN="3" NOWRAP> - <div id="popup_all_users_button_container"><input type="button" id="popup_all_users_button" disabled="true" value="Show List" ONCLICK="window.userManager.popupAllUsersBox();"/></div> + <input type="button" id="popup_all_users_button" disabled="true" value="Show List" ONCLICK="window.userManager.popupAllUsersBox();"/> </TD> </TR> #end