472,995 Members | 1,870 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,995 software developers and data experts.

Dynamic Radio Group

I have a page that has n number of radio groups (yes/No)

how can i prevent the form being submitted if more than one radio group is
not selected?

By default all radio groups are unchecked

The problem i am facing is that i do not know how many yes/no radio groups
will be generated
Many Thanks

Craig
Jul 23 '05 #1
6 3219
Craig Keightley wrote:
I have a page that has n number of radio groups (yes/No)

how can i prevent the form being submitted if more than one radio group is
not selected?

By default all radio groups are unchecked

The problem i am facing is that i do not know how many yes/no radio groups
will be generated


function areAllRadiosChecked(form){
var f=form.length,counter=0,c=0;
while(f--){
if(form[f].type=="radio" && (form[f].name !=form[f+1].name)){c++;}
if(form[f].type=="radio" && form[f].checked){counter++;}
}
return c==counter;
}

Mick
Jul 23 '05 #2
In article <42**********************@news-text.dial.pipex.com>, do**@spam.me
enlightened us with...

The problem i am facing is that i do not know how many yes/no radio groups
will be generated


Your validation function has to loop through all the form elements, then, and
check them against type==radio. This assumes all radio elements are part of
this check.
Note that document.forms is an array that has a property called elements that
is an array.
document.forms['formname'].elements[]
or
document.forms[index].elements[]
or
document.formname.elements[] (shortcut syntax may not work in all browsers)
(you get the idea)

There are a couple other ways to do this that are not as cross-browser (i.e.
require newer DOM methods such as getElementsByTagname, getElementsByName, or
getElementById). If you only need to support newer browsers, you can do
something like name them all consistently (i.e. all named optiongroupname_x
where x is an integer), write the final value of x to a javascript variable,
and do a looped getElementsByName("optiongroupname"+x).

The first is simpler. If you have a LOT of form elements that are NOT part of
the option groups you're interested in, though, the second can save you
processing time by resulting in a smaller loop. Since JS runs on the client,
the time it takes to do things is highly dependent on the user's machine.
Sometimes it's worth it to try to optimize things that loop.

--
--
~kaeli~
Frisbeetarianism (n.), The belief that, when you die, your
soul goes up on the roof and gets stuck there.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #3
Craig Keightley wrote:
I have a page that has n number of radio groups (yes/No)

how can i prevent the form being submitted if more than one radio group is not selected?

By default all radio groups are unchecked

The problem i am facing is that i do not know how many yes/no radio groups will be generated
Many Thanks

Craig From the HTML 4.0 spec:
At all times, exactly one of the radio buttons in a set is checked. If
none of the <INPUT> elements of a set of radio buttons specifies
`CHECKED', then the user agent must check the first radio button of the
set initially.
Since user agent behavior differs, authors should ensure that in each
set of radio buttons that one is initially "on".
From Jakob Nielsen:


Always offer a default selection for radio button lists. By definition,
radio buttons always have exactly one option selected, and you
therefore shouldn't display them without a default selection.
(Checkboxes, in contrast, often default to having none of the options
selected.)

Jul 23 '05 #4
RobB wrote:
Craig Keightley wrote:
I have a page that has n number of radio groups (yes/No)
[...]
From the HTML 4.0 spec:


At all times, exactly one of the radio buttons in a set is checked. If
none of the <INPUT> elements of a set of radio buttons specifies
`CHECKED', then the user agent must check the first radio button of the
set initially.
Since user agent behavior differs, authors should ensure that in each
set of radio buttons that one is initially "on".
From Jakob Nielsen:


Always offer a default selection for radio button lists. By definition,
radio buttons always have exactly one option selected, and you
therefore shouldn't display them without a default selection.
(Checkboxes, in contrast, often default to having none of the options
selected.)


To which could be added that if there is a simple yes/no choice, then
a checkbox is the answer. It requires only one control, not two, and
requires no JavaScript or additional code to ensure exactly two states.

Most user agents do not enforce the standard so it is common to
have yes/no radio buttons with neither selected, which suggests that
there are really three states - yes, no and 'no answer', which infers
three radio buttons where 'no answer' is checked by default.

--
Rob
Jul 23 '05 #5
Thanks for all the feedback and apologies for the late reply

Just to update:
The feedback form has to be radio buttons and do are not checked by default
(customer's spec not mine)

The system will only be viewed internally on a network using Internet
explorer

The radio buttons have subsequent javascript onClick events when selected
(innerHTML shows/hides part of the page)

I am going to try the code submitted by Mick and post an update:

function areAllRadiosChecked(form){
var f=form.length,counter=0,c=0;
while(f--){
if(form[f].type=="radio" && (form[f].name !=form[f+1].name)){c++;}
if(form[f].type=="radio" && form[f].checked){counter++;}
}
return c==counter;
}
Craig
"RobG" <rg***@iinet.net.auau> wrote in message
news:42***********************@per-qv1-newsreader-01.iinet.net.au...
RobB wrote:
Craig Keightley wrote:
I have a page that has n number of radio groups (yes/No)

[...]

From the HTML 4.0 spec:


At all times, exactly one of the radio buttons in a set is checked. If
none of the <INPUT> elements of a set of radio buttons specifies
`CHECKED', then the user agent must check the first radio button of the
set initially.
Since user agent behavior differs, authors should ensure that in each
set of radio buttons that one is initially "on".
From Jakob Nielsen:


Always offer a default selection for radio button lists. By definition,
radio buttons always have exactly one option selected, and you
therefore shouldn't display them without a default selection.
(Checkboxes, in contrast, often default to having none of the options
selected.)


To which could be added that if there is a simple yes/no choice, then
a checkbox is the answer. It requires only one control, not two, and
requires no JavaScript or additional code to ensure exactly two states.

Most user agents do not enforce the standard so it is common to
have yes/no radio buttons with neither selected, which suggests that
there are really three states - yes, no and 'no answer', which infers
three radio buttons where 'no answer' is checked by default.

--
Rob

Jul 23 '05 #6
Also forgot to mention that the radio groups are also dynamically named
eg:

<input name="auth3" type="radio" value="Y"
onClick="clearReason('reason3','reasonCell3')">
No
<input name="auth3" type="radio" value="N"
onClick="showReason('reason3','reasonCell3')">
<input name="auth4" type="radio" value="Y"
onClick="clearReason('reason4','reasonCell4')">
No
<input name="auth4" type="radio" value="N"
onClick="showReason('reason4','reasonCell4')">
<input name="auth5" type="radio" value="Y"
onClick="clearReason('reason5','reasonCell5')">
No
<input name="auth5" type="radio" value="N"
onClick="showReason('reason5','reasonCell5')">

.....etc
all i need to check that if all radio buttons are set to N, then set the
value of a hidden field (completeAuth) to N
Craig

"Craig Keightley" <do**@spam.me> wrote in message
news:42*********************@news-text.dial.pipex.com...
Thanks for all the feedback and apologies for the late reply

Just to update:
The feedback form has to be radio buttons and do are not checked by
default (customer's spec not mine)

The system will only be viewed internally on a network using Internet
explorer

The radio buttons have subsequent javascript onClick events when selected
(innerHTML shows/hides part of the page)

I am going to try the code submitted by Mick and post an update:

function areAllRadiosChecked(form){
var f=form.length,counter=0,c=0;
while(f--){
if(form[f].type=="radio" && (form[f].name !=form[f+1].name)){c++;}
if(form[f].type=="radio" && form[f].checked){counter++;}
}
return c==counter;
}
Craig
"RobG" <rg***@iinet.net.auau> wrote in message
news:42***********************@per-qv1-newsreader-01.iinet.net.au...
RobB wrote:
Craig Keightley wrote:

I have a page that has n number of radio groups (yes/No)

[...]


From the HTML 4.0 spec:

At all times, exactly one of the radio buttons in a set is checked. If
none of the <INPUT> elements of a set of radio buttons specifies
`CHECKED', then the user agent must check the first radio button of the
set initially.
Since user agent behavior differs, authors should ensure that in each
set of radio buttons that one is initially "on".

From Jakob Nielsen:

Always offer a default selection for radio button lists. By definition,
radio buttons always have exactly one option selected, and you
therefore shouldn't display them without a default selection.
(Checkboxes, in contrast, often default to having none of the options
selected.)


To which could be added that if there is a simple yes/no choice, then
a checkbox is the answer. It requires only one control, not two, and
requires no JavaScript or additional code to ensure exactly two states.

Most user agents do not enforce the standard so it is common to
have yes/no radio buttons with neither selected, which suggests that
there are really three states - yes, no and 'no answer', which infers
three radio buttons where 'no answer' is checked by default.

--
Rob


Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: John Mullen | last post by:
I want to take the following HTLM and use javascript to turn on radio buttons if checkbox is checked, can I do this with javascript (maybe onClick or an array) or do i need a server side script ?...
1
by: Rick | last post by:
After being frustrated with this issue on several occasions I think I found the secret sauce for solving the issue after reading a few different messages about what others thought and trying a...
22
by: Saul | last post by:
I have a set of radio buttons that are created dynamically, after rendered I try loop thru this set by getting the length of the set, but I keep getting an error stating the element is undefined. I...
7
by: Jerim79 | last post by:
My situation is that I have a form that asks the user for a number. Next, I execute a while loop that displays a group of questions the amount of times the customer entered. For instance, the loop...
2
by: dpazza | last post by:
Hi, I'm creating a quiz on using a form in VB 2005 express. I have four sets of questions and answers (labels and radio buttons) and I change between which set of questions is currently shown on...
3
by: creative1 | last post by:
Here is how you create a complex data report that involves parent and child commands and you can update information at runtime. Its pretty straight forward to work with simple queries; however,...
0
bmallett
by: bmallett | last post by:
First off, i would like to thank everyone for any and all help with this. That being said, I am having a problem retrieving/posting my dynamic form data. I have a form that has multiple options...
0
by: LavanyaM | last post by:
Hi, In our app we need to create dynamic radio buttons. There should be three radio buttons and this set is dynamic accroding to the data this is my code: <th width="5%"...
13
by: tommymo | last post by:
Hi everyone I'm new to this site and the world of ASP.Net C# programming. I have been learning controls and integrating them with a SQL database. So far I have been able to move along and understand...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.