Ignore:
Timestamp:
08/17/09 12:27:00 (15 years ago)
Author:
rafaelraymundo
Message:

Ticket #623 - Habilitar "alterar senha" quando for marcado "expirar senha".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoAdmin1_2/js/jscode/users.js

    r594 r1329  
    4141                return; 
    4242        } 
    43          
     43 
    4444        // Corporative Information 
    4545        if (document.forms[0].corporative_information_employeenumber.value != "") 
     
    740740        document.getElementById("td_input_mailforwardingaddress").appendChild(input); 
    741741} 
     742 
     743function set_changepassword() 
     744{ 
     745        if (document.getElementById('passwd_expired').checked) 
     746                { 
     747                document.getElementById('changepassword').checked = true; 
     748                document.getElementById('changepassword').disabled = true; 
     749                } 
     750                else 
     751                { 
     752                document.getElementById('changepassword').disabled =false; 
     753                } 
     754} 
     755 
     756 
Note: See TracChangeset for help on using the changeset viewer.