Jason,
As you know from dealing with me on this, the form now sends with an attachment. Only small problem is the 2 checkboxes are always checked. They shouldn't be.
Here is the code for both:
<input type="checkbox" name="Containers" id="Containers" value="1" class="formCheckboxField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("quote","Containers"):""),""))) {echo "checked=\"checked\"";} ?> tabindex="21" />
The CHECK IF in the Dynamic Properties:
<?php (isset($_GET["invalid"])?ValidatedField("quote" ?>
<input type="checkbox" name="Pickup" id="Pickup" value="1" class="formCheckboxField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("quote","Pickup"):""),""))) {echo "checked=\"checked\"";} ?> tabindex="22" />
The CHECK IF in the Dynamic Properties:
<?php (isset($_GET["invalid"])?ValidatedField("quote" ?>
Even though these say "Checked", the properties for them say "Unchecked" next to the dynamic button.
I need them to default to Unchecked. What am I doing wrong?
Thanks