Ask a Question related to Macromedia ColdFusion, Design and Development.
-
phil ashby #1
Validating Form Radio Buttongroup
Hi guys and gals,
I've got a cfform which contains radiobutton groups. I want to start the form
with nothing in the group checked, but on submission of the form, validate that
something is selected. I've tried to play with the validate param, but I'm not
having much luck. Any ideas?
Cheers
Phil
<cfinput type="radio" name="rbgroup1" value="1" label="1" checked="no">
<cfinput type="radio" name="rbgroup1" value="2" label="2" checked="no" >
<cfinput type="radio" name="rbgroup1" value="3" label="3" checked="no">
<cfinput type="radio" name="rbgroup1" value="4" label="4" checked="no">
<cfinput type="radio" name="rbgroup1" value="5" label="5" checked="no">
phil ashby Guest
-
validating radio group button
Hello everybody, I want to validate radio group button in dream weaver...How can I do that? -
CFForm and validating radio buttons
I have a Flash CFForm that contains some radio buttons that I want to validate. I have specified the radio buttons as required and entered an error... -
Validating Radio Button w/ Different Groups
I've searched and cant find info this. I am enhancing a survey and one part of the survey is to rate from 1-8 for different characteristics. I... -
Validating Mail Form ???
Hi ! This is shahgillani I have created four forms with five input text fields. I have to validate them and send them to a target email. I will... -
Validating a HTML form
Does anyone know of a way to quickly validate an HTML web form? I need to make sure that certain fields on my form actually contain data and are... -
dempster #2
Re: Validating Form Radio Buttongroup
There may be a more elegant way to do this, but I usually use;
CFIF IsDefined('Form.rbgroup1')
-Paul
dempster Guest
-
phil ashby #3
Re: Validating Form Radio Buttongroup
Sorry, I didn't make myself very clear in my first message.
I was hoping to use the validate and validateat params and validate the form
(which will be type="flash") upon submission in the same way you can check to
see if a text box has been completed etc
phil ashby Guest



Reply With Quote

