Committees: Difference between revisions
Jump to navigation
Jump to search
| Line 54: | Line 54: | ||
==MR Committees== | ==MR Committees== | ||
.dropbtn { | /* When the user clicks on the button, | ||
toggle between hiding and showing the dropdown content */ | |||
function myFunction() { | |||
document.getElementById("myDropdown").classList.toggle("show"); | |||
} | |||
// Close the dropdown menu if the user clicks outside of it | |||
window.onclick = function(event) { | |||
if (!event.target.matches('.dropbtn')) { | |||
var dropdowns = document.getElementsByClassName("dropdown-content"); | |||
var i; | |||
for (i = 0; i < dropdowns.length; i++) { | |||
var openDropdown = dropdowns[i]; | |||
if (openDropdown.classList.contains('show')) { | |||
openDropdown.classList.remove('show'); | |||
} | |||
} | |||
} | |||
} | } | ||
Revision as of 18:05, 8 August 2018
QIBA Committee Organization Chart July 2018
-
- Airway Measurement TF
-
-
- PDF-MRI (Perfusion, Diffusion and Flow) Biomarker Committee (dissolved as of June 6, 2018)
- DWI-MR BC [page coming soon]
- DCE-MRI BC [page coming soon]
- DTI+ BC [page coming soon]
- DSC BC [page coming soon]
- ASL (Arterial Spin Labeling) BC [page coming soon]
- fMRI Biomarker Committee
- MR Elastography Biomarker Committee
- PDFF (Proton Density Fat Fraction) Biomarker Committee
- MSK (Musculoskeletal) Biomarker Committee
-
-
- Profile Compliance TF
- FDG-PET UPICT TF
-
-
-
- System Dependencies/Phantom Testing TF
- Clinical Applications TF
- System Dependencies/Phantom Testing/Clinical Validation
-
-
- Committee on Open Image Archives - sunsetted
See Also
- Committee Template - Template for new Committee Wiki Pages
- Committee Organization - Committee Membership and Responsibilities
MR Committees
/* When the user clicks on the button, toggle between hiding and showing the dropdown content */ function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown menu if the user clicks outside of it window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}