Click here to Skip to main content
15,907,396 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Guys, I have a two CheckBoxLists with same data. If i check the checkboxes of checkboxlist and automatically removes the second checkboxlist and also if uncheck the checkboxes of checkboxlist and automatically adds same item into second checkboxlist.

Please any one help me.
Posted
Updated 1-Nov-12 21:06pm
v4

 
Share this answer
 
Try more or less like this

call this function on click of radiobutton

if(formname.radiolist[i].checked)
{
formname.radiolist[j].checked=false;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900