Connecting Tech Pros Worldwide Help | Site Map

How to restrict user to select single option in checkboxlist options

Newbie
 
Join Date: Mar 2007
Posts: 6
#1: Jul 23 '07
I have checkboxlist control with 3 listitems. I should be able to select ony one listitem among listitems.
harshmaul's Avatar
Expert
 
Join Date: Jul 2007
Posts: 483
#2: Jul 23 '07

re: How to restrict user to select single option in checkboxlist options


surely you would be better off using a radio group...

<form>
<input type="radio" name="group" value="a" checked>a</input>
<input type="radio" name="group" value="b">b</input>
<input type="radio" name="group" value="c">c</input>
</form>
drhowarddrfine's Avatar
Expert
 
Join Date: Sep 2006
Posts: 5,561
#3: Jul 23 '07

re: How to restrict user to select single option in checkboxlist options


If you mean they are on one time but off the next, you need javascript.
Reply