-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample7.js
62 lines (48 loc) · 1.2 KB
/
sample7.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
if ($("#txtM1Date").val() == "")
$("#PlannedSmplDate").attr("disabled", false);
else
$("#PlannedSmplDate").attr("disabled", true);
if ($("#txtM2aDate").val() == "")
$("#rna2aDate").attr("disabled", false);
else
$("#rna2aDate").attr("disabled", true);
if ($("#M2bDate").val() == "")
$("#crna2bDate").attr("disabled", false);
else
$("#crna2bDate").attr("disabled", true);
if ($("#M2cDate").val() == "")
$("#chips2cDate").attr("disabled", false);
else
$("#chips2cDate").attr("disabled", true);
if ($("#M2dDate").val() == "")
$("#dataPosted2dDate").attr("disabled", false);
else
$("#dataPosted2dDate").attr("disabled", true);
if ($("#M3aDate").val() == "")
$("#QC3aDate").attr("disabled", false);
else
$("#QC3aDate").attr("disabled", true);
if ($("#M3bDate").val() == "")
$("#statistics3bDate").attr("disabled", false);
else
$("#statistics3bDate").attr("disabled", true);
if ($("#M4Date").val() == "")
$("#bioInformatics4Date").attr("disabled", false);
else
$("#bioInformatics4Date").attr("disabled", true);
txtM1Date
txtM2aDate
M2bDate
M2cDate
M2dDate
M3aDate
M3bDate
M4Date
PlannedSmplDate
rna2aDate
crna2bDate
chips2cDate
dataPosted2dDate
QC3aDate
statistics3bDate
bioInformatics4Date