kensington43
Technical User
I have dynamic output of data where each row has two checkboxes where only one should be checked per row. Not all the rows of checkboxes will be selected but if they do select a checkbox on a row only one can be selected. Since the names are different I cant use radio buttons and this is dynamic so it gives me about 100 rows of info. Please advise How I can make sure only one checkbox is checked so they cant check both boxes in one row?
I have tried several JavaScript attempts but all seem to check one checkbox and ALL other checkboxes on every Row cant be checked like my attempt below due to the dynamic output from a database.
Any suggestions?
I have tried several JavaScript attempts but all seem to check one checkbox and ALL other checkboxes on every Row cant be checked like my attempt below due to the dynamic output from a database.
Any suggestions?
Code:
<html><body>
<script>
function only_one(cBox)
{
// See if box being clicked gets checked
var alreadyChecked=false;
if (cBox.checked)
alreadyChecked=true; // True that it was alreadyChecked'ed
// Uncheck both boxes
document.getElementById('manager').checked = false;
document.getElementById('admin').checked = false;
// If the box clicked on was alreadyChecked, check it again.
if (alreadyChecked)
cBox.checked=true;
}
</script>
<!-- The variable #ID# will have a unique different number so for 100 rows it will have 100 different numbers with each row (each row has just two checkboxes with Admin and Manager id's) having the same number. -->
<form name="employees">
<cfoutput query="myQuery">
a<input type="Checkbox" value="#ID#" id="admin" name="fieldOne" onclick="only_one(this)">
b<input type="Checkbox" value="#ID#" id="manager" name="fieldTwo" onclick="only_one(this)"></cfoutput>
</form>
</body></html>