close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

radio group retaining value on failed validation

Thread began 7/12/2019 5:54 am by Jamie | Last modified 7/16/2019 12:57 am by Ray Borduin | 417 views | 5 replies |

Jamie

radio group retaining value on failed validation

Hi Ray

On the attached page, am trying to retain the selected value of the radio group starting at line 263 when validation fails but am not having an joy at all and not sure what I have done wrong?

Cheers

Sign in to reply to this post

Ray BorduinWebAssist

Form element names can't have spaces in php. I think it automatically renames them to use underscores, so instead of:
ValidatedField("contactform","Legal Aid Qualify")

try:
ValidatedField("contactform","Legal_Aid_Qualify")

You may just want to avoid underscores in form element names in general to prevent having to do work-arounds like this.

Sign in to reply to this post
Did this help? Tips are appreciated...

Jamie

Thanks Ray but I had already tried Legal_Aid_Qualify, LegalAidQualify all with no positive result.

Sign in to reply to this post

Ray BorduinWebAssist

OK... I see that on the second radio you have:

<input <?php if (!(strcmp((ValidatedField("contactform","Legal Aid Qualify")),"no"))) {echo "checked=\"checked\"";} ?> name="Legal Aid Qualify" type="radio" id="Legalaid_1" value="no" checked="checked">

since it has a hard-coded: checked="checked" and only one radio can be checked at a time, the dynamic selection will be ignored and the second one will always be checked.

probably the best solution is to update it to:
<input <?php if ((strcmp((ValidatedField("contactform","Legal_Aid_Qualify")),"yes"))) {echo "checked=\"checked\"";} ?> name="Legal Aid Qualify" type="radio" id="Legalaid_1" value="no" >

That way it is the opposite of the first radio and one or the other will be checked.

Sign in to reply to this post
Did this help? Tips are appreciated...

Jamie

thanks Ray. that just selects both radios on a failed validation. I'm just going to not preselect any checked value and add validation for each radio group

thanks a million though

Sign in to reply to this post

Ray BorduinWebAssist

It should never be possible to select two radio button values at the same time if they have the same name. The browser prevents that. Let me know if you want me to take another look, but I think my solution should have worked. I'd have to take a look at the updated page to see what was wrong with the implementation.

Sign in to reply to this post
Did this help? Tips are appreciated...

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...