Forums
This topic is locked
Grouping radio buttons...
01 Jun 2003 12:35:17 Chriz L. posted:
Hello guyzz...,I have this problem....i put some radio buttons in a form and and the user can mark them all...and i want the user to be able to mark just one...
Is there a way in Dreamweaver MX to put the radiobuttons in a radio button group so when one radio is checked the other to get unchecked?
Thanks in advance!
Replies
Replied 01 Jun 2003 13:05:19
01 Jun 2003 13:05:19 Owen Eastwick replied:
If all the radio buttons have the same name, only one at a time can be checked, e.g.:
<input type="radio" name="radiobutton" value="radiobutton" checked>
<input type="radio" name="radiobutton" value="radiobutton">
<input type="radio" name="radiobutton" value="radiobutton">
Regards
Owen.
-------------------------------------------------------------------------------------------
Used programming books and web development software for sale (UK only): www.tdsf.co.uk/tdsfdemo/Shop.htm
Developer services and tutorials: www.drdev.net
Multiple Parameter UD4 / Access 2000 Search Tutorial: www.tdsf.co.uk/tdsfdemo/
<input type="radio" name="radiobutton" value="radiobutton" checked>
<input type="radio" name="radiobutton" value="radiobutton">
<input type="radio" name="radiobutton" value="radiobutton">
Regards
Owen.
-------------------------------------------------------------------------------------------
Used programming books and web development software for sale (UK only): www.tdsf.co.uk/tdsfdemo/Shop.htm
Developer services and tutorials: www.drdev.net
Multiple Parameter UD4 / Access 2000 Search Tutorial: www.tdsf.co.uk/tdsfdemo/
Replied 01 Jun 2003 14:26:58
01 Jun 2003 14:26:58 Chriz L. replied:
thank you <img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>