close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Issues with Check Boxes

Thread began 12/15/2010 10:38 am by mrobben375515 | Last modified 12/15/2010 11:05 am by Jason Byrnes | 897 views | 1 replies |

mrobben375515

Issues with Check Boxes

I'm creating a form with two checkboxes. One of them is required and the other one is not. However, both have to be checked before the form will submit. Why is that? Also, when the form is submit it gives the "?invalid=true" extension which probably has to do with my insert record behavior. I'm going to have the page only viewable to logged in members, which I know how to do using the security assist page rules. And when they access the page I want to pull their information using a Recordset and submit their name, email, etc. along with their contest entry into a new database table. I've attached the php doc, and here's the url upload_your_pet_contest_photo.php. Any pointers are appreciated. Thanks

Attached Files
upload_your_pet_contest_photo.zip
Sign in to reply to this post

Jason ByrnesWebAssist

1) You have 2 server validations server behaviors on the page.


the first one:

php:
<?php 

if (isset($_POST["Default_submit"]))  {
  
$WAFV_Redirect "upload_your_pet_contest_photo.php?invalid=true";
  
$_SESSION['WAVT_uploadyourpetphoto_Errors'] = "";
  if (
$WAFV_Redirect == "")  {
    
$WAFV_Redirect $_SERVER["PHP_SELF"];
  }
  
$WAFV_Errors "";
  
$WAFV_Errors .= WAValidateRQ((isset($_POST["fieldset_group_Copyright_Accept_Terms"])?$_POST["fieldset_group_Copyright_Accept_Terms"]:"") . "",true,1);
  
$WAFV_Errors .= WAValidateRQ((isset($_POST["fieldset_group_Upload_Your_Image"])?$_POST["fieldset_group_Upload_Your_Image"]:"") . "",true,2);

  if (
$WAFV_Errors != "")  {
    
PostResult($WAFV_Redirect,$WAFV_Errors,"uploadyourpetphoto");
  }
}
?>




is validating a form element that doers not exist:
fieldset_group_Upload_Your_Image


it looks like you can delete that code from lines 15 - 30.


2) Both check boxes have spry validation applied. line 547 - 548:
var fieldset_group_Copyright_Accept_Terms_Spry = new Spry.Widget.ValidationCheckbox("fieldset_group_Copyright_Accept_Terms_Spry",{additionalError: 'fieldset_group_Error_2', validateOn:["blur"]});
var fieldset_group_Receive_emails_Spry = new Spry.Widget.ValidationCheckbox("fieldset_group_Receive_emails_Spry",{additionalError: 'fieldset_group_Error_2', validateOn:["blur"]});


delete the line for the checkbox you do not want to validate.

Sign in to reply to this post

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...