Lines 133-139
function validate1(date) {
Link Here
|
133 |
|
133 |
|
134 |
// prevent adjacent checkboxes from being checked simultaneously |
134 |
// prevent adjacent checkboxes from being checked simultaneously |
135 |
function radioCheckBox(box){ |
135 |
function radioCheckBox(box){ |
136 |
if($(this).attr("checked")){ |
136 |
box.parents("td").siblings().find("input:checkbox:visible").each(function(){ |
137 |
$(this).removeAttr("checked"); |
137 |
if($(this).attr("checked")){ |
138 |
} |
138 |
$(this).removeAttr("checked"); |
|
|
139 |
} |
140 |
}); |
139 |
} |
141 |
} |
140 |
- |
|
|