Compare commits

..

No commits in common. "147765b31f1af2526c92493614a954cb6df359f1" and "e2bae91304496c4fb1c86c806019b925aef88385" have entirely different histories.

View File

@ -956,10 +956,10 @@ if ($('#status').val() == 'R') {
// disable closedate if open
// disabble closedate, opendate, useridowner if pending
$('#status').change(function() {
if(this.value=='R' || this.value=='r'){ $("#opendate").prop('disabled', false); $(".closedate").prop('disabled', false);$("#userid_owner").prop('disabled', false);}
else if(this.value=='O'){$(".closedate").prop('disabled', true); $("#opendate").prop('disabled', false);$("#userid_owner").prop('disabled', false);}
if(this.value=='R' || this.value=='r'){ $("#opendate").prop('disabled', false); $(".closedate").prop('disabled', false);}
else if(this.value=='O'){$(".closedate").prop('disabled', true); $("#opendate").prop('disabled', false); }
else if(this.value=='P'){$("#userid_owner").prop('disabled', true); $("#opendate").prop('disabled', true); $(".closedate").prop('disabled', true); }
else { $(".closedate").prop('disabled', false); $("#opendate").prop('disabled', false);$("#userid_owner").prop('disabled', false);}
else { $(".closedate").prop('disabled', false); $("#opendate").prop('disabled', false);}
})
// $('#acttypeid').change(function() {