Guys - I'm just not getting a handle on Field Titles for:
1 - Radio buttons
2 - CheckBoxes
----------Radio Button Issue--------I have a simple yes/no choice - wither you have a previous name or you don't.
My code is here:
- Code: Select all
Any Previous Name(s)?
<label for="previousnamesradioyes" style="width:5em;"><input type="radio" name="previousnamesradio" value="yespreviousnamesradio" id="previousnamesradioyes" />Yes</label>
<label for="previousnamesradiono"><input type="radio" name="previousnamesradio" value="nopreviousnamesradio" id="previousnamesradiono" />No</label>
PROBLEM - I don't know how to make
Field Titles for this or any other Radio button (and have spent this afternoon trying - or trying to find examples of how to do this.
QUESTION - Is my code set up wrong to begin with?
QUESTION - Can you provide and example of a RADIO BUTTON(s) Field Title(s)
As an example - this is what I get in my form:
previousnamesradio yespreviousnamesradio
But I can't change yespreviousnamesradio to
Yes - Previous Name (it's one level deeper than I know how to go)
-------Checkboxe Issue--------Here is my Checkbox code:
- Code: Select all
<div style="padding-top:8px;">Check all you would consider working:<br />
<label for="fulltimeregularcheckbox" class="radio"><input name="fulltimeregularcheckbox" type="checkbox" value="" id="fulltimeregularcheckbox" />Full Time/Regular</label></div>
<div><label for="fulltimetemporarycheckbox" class="radio" style="padding-top:4px;"><input name="fulltimetemporarycheckbox" type="checkbox" value="" id="fulltimetemporarycheckbox"/>Full Time/Temporary</label></div>
<div><label for="parttimeregularcheckbox" class="radio"><input name="parttimeregularcheckbox" type="checkbox" value="" id="parttimeregularcheckbox" class="horzBlock"/>Part Time/Regular</label></div>
<div><label for="parttimetemporarycheckbox" class="radio"><input name="parttimetemporarycheckbox" type="checkbox" value="" id="parttimetemporarycheckbox"/>Part Time/Temporary</label></div>
</div>
Additionally I have these Field Titles:
fulltimeregularcheckbox=Full Time Regular
fulltimetemporarycheckbox=Full Time Temporary
parttimeregularcheckbox=Part Time Regular
parttimetemporarycheckbox=Part Time Temporary
PROBLEM - The return email returns this (not ALL of which were checked):
Full Time Regular
Full Time Temporary
Part Time Regular
Part Time Temporary
So the Field Titles for that works
BUT DOESNT Give me an answer as two which ones were chosen.
So I'm confused on two fronts - both the Radio Buttons and the Check Boxes & I apologize - but I couldn't find anything on the site that I understood to address these two what should be common occurances (I may be the only dolt in code land!)
Can anyone provide some help or more in depth examples?
Thanks for any help - - really appreciate it.