Hi folks, any help as a matter of urgency would be greatly appreciated.
On submission of my form an XSLT transformed email is sent. For the checkboxlist only one input is being picked up. I am using the following code to display this input on the sent email;
I understand I need to loop to get multiple answers (most likely using 'for each') but the markup escapes me as I am new to XSLT. Could someone suggest what I should use to capture multiple inputs?
Checkbox List - Only one item showing
Hi folks, any help as a matter of urgency would be greatly appreciated.
On submission of my form an XSLT transformed email is sent. For the checkboxlist only one input is being picked up. I am using the following code to display this input on the sent email;
<xsl:value-of select="$records//fields/child::* [name() = 'question3']/.//value"/>
I understand I need to loop to get multiple answers (most likely using 'for each') but the markup escapes me as I am new to XSLT. Could someone suggest what I should use to capture multiple inputs?
Many thanks in advance for any responses.
This should do it:
Thanks very much for the help - worked perfectly. This XSLT lark is pretty handy.
is working on a reply...