Hi,
Can you show me the form which you are talking about like shopping list (screenshot or URL) to have an idea of what you are talking about.
(Thanks for the very quick response!)

-
This reply was modified 8 years, 11 months ago by
eyeghoti.
Thanks for the screenshot,
Can you send me the screenshot from backend form too?
By backend form, I assume you mean the code for the form?
(I’ve only included the code for 2 rows, rather than all 10, and cut out some of the drop-down options just to make it easier to read.)
At the moment I only one row is added to the Google Sheet, that being the last one entred (if 3 items are entred, the 3rd overwrites the others, because they have the same field name.)
I could have columns called [location-1], [location-2] etc, but then colating the data into a readable spreadsheet becomes a PITA.
<label> <strong>First name</strong> [text* first-name] </label> <label> <strong>Surname</strong> [text* surname] </label>
<label> <strong>Date of catch</strong> [date* date-fished] </label>
<table>
<tr>
<td></td>
<td>Location</td>
<td>Species</td>
<td>Size</td>
<td>Killed</td>
<td>Fly<br>(optional)</td>
<td>Hook size<br>(optional)</td>
</tr>
<tr>
<td>1</td>
<td>[select location include_blank "Archers" "Meadow" "Home Wood" "Lake"]</td>
<td>[select species include_blank "Brown" "Grayling" "Rainbow"]</td>
<td>[select size include_blank "<9" "9 to 15" "16 to 20"]</td>
<td>[select killed include_blank "No" "Yes"]</td>
<td>[select fly include_blank "GRHE" "PTN" "Klink" "other"]</td>
<td>[select fly-size include_blank "16" "14" "12" "10" ]</td>
</tr>
<td>2</td>
<td>[select location include_blank "Archers" "Meadow" "Lake"]</td>
<td>[select species include_blank "Brown" "Grayling" "Rainbow"]</td>
<td>[select size include_blank "<9" "9 to 15" "16 to 20"]</td>
<td>[select killed include_blank "No" "Yes"]</td>
<td>[select fly include_blank "GRHE" "PTN" "Klink" "other"]</td>
<td>[select fly-size include_blank "16" "14" "12" "10" ]</td>
</tr>
</table>
<label>Notes (optional)
[textarea notes 3x placeholder "(You can enter any details here about your day that you think might be useful to club members)"]</label>
[submit "Send"]
[ No bumping please. ]
-
This reply was modified 8 years, 11 months ago by
eyeghoti.
-
This reply was modified 8 years, 10 months ago by
Jan Dembowski.