Hi Forum
I'm using a multiple select list on my form at http://disability-norfolk.org/index.php?option=com_chronocontact&Itemid=194 - the Access needs part; users need to be able to select multiple choices.
It works fine when fillling it in (ie you can select multiple values) but the emailled results only show one selected.
What's wrong?
Any suggestions, please?
I'm using a multiple select list on my form at http://disability-norfolk.org/index.php?option=com_chronocontact&Itemid=194 - the Access needs part; users need to be able to select multiple choices.
It works fine when fillling it in (ie you can select multiple values) but the emailled results only show one selected.
What's wrong?
<fieldset>
<legend>Access needs</legend>
<table cellpadding="2" id="access-needs">
<tr valign="top">
<td align="right"><label for="accessneeds">Your access needs:</label></td>
<td><select name="accessneeds" size="7" multiple="multiple" id="accessneeds" accesskey="p">
<option value="parking">disabled parking</option>
<option value="levelorlift_access">level or lift access</option>
<option value="induction_loop">induction loop </option>
<option value="BSL_interpretation">BSL_interpretation</option>
<option value="advance_info">meeting Information in advance of meeting</option>
<option value="alternative">meeting information in alternative formats</option>
<option value="assistant">I will be bringing my Personal Assistant or Carer</option>
</select></td>
</tr>
<tr valign="top">
<td align="right"><label for="other-needs">Other?</label><br />Please specify</td>
<td><textarea name="txtother-needs" cols="22" rows="5" id="label" title="Text input: Other needs?"></textarea></td>
</tr>
</table>
</fieldset>
Any suggestions, please?
Thanks, Greyhead for that quick reply,
Hope Brittany is brighter than Norfolk this morning (it is Brittany isn't it?)
Please enlighten me as to adding an array? I've looked but my best guess is the Auto-Generated Code tab?
Hope Brittany is brighter than Norfolk this morning (it is Brittany isn't it?)
Please enlighten me as to adding an array? I've looked but my best guess is the Auto-Generated Code tab?
HI JimmyHill,
You just need to change the names in your Form HTML - ChronoForms and your browser handle most of the rest (some problems remain with email templates).
Bob
PS Yes, it's Brittany, and it's cold and grey here this morning after a sunny spring day yesterday.
You just need to change the names in your Form HTML - ChronoForms and your browser handle most of the rest (some problems remain with email templates).
<select name="accessneeds[]" size="7" multiple="multiple" id="accessneeds" accesskey="p">
Bob
PS Yes, it's Brittany, and it's cold and grey here this morning after a sunny spring day yesterday.
This topic is locked and no more replies can be posted.