Changeset 621 in tmcsimulator for branches/LCSv2/views/default/submit.html


Ignore:
Timestamp:
08/19/2020 08:18:24 AM (6 years ago)
Author:
jdalbey
Message:

LCS implement exiting incident UI and javascript

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/LCSv2/views/default/submit.html

    r619 r621  
    6666} 
    6767</script> 
    68  
     68<script> 
     69// Handle a user click on a radio button for "existing incident" 
     70function radioclicked() 
     71{ 
     72    var btngroup = document.getElementsByName('existing'); 
     73    // Is the YES button checked? 
     74    if(btngroup[1].checked) 
     75    { 
     76        // Turn on display of combo box to select a closure id 
     77        document.getElementById("closureselect").style.display = "block"; 
     78    } 
     79    else 
     80    { 
     81        // Turn off the combo box display 
     82        document.getElementById("closureselect").style.display = "none"; 
     83    } 
     84} 
     85</script> 
    6986<div id="main" role="main" class="mainflex"> 
    7087    <div id="pageTitle" class="header"> Request Emergency Closure</div> 
Note: See TracChangeset for help on using the changeset viewer.