I'd like to see some additional functionality built-in, possibly as shortcodes. Basically, it would be nice to be able to output a specific field or range of fields from a form. For example, I built and order form, but I actually want it to display in a table with an item image above each quantity field, and all the customer information fields at the bottom.
Maybe it could be done something like this:
[gf_startForm id="1"]
<table>
<tbody>
<tr>
<td>
image here
[gf_field num="1"]
</td>
<td>
image here
[gf_field num="2"]
</td>
<td>
image here
[gf_field num="3"]
</td>
</tr>
<tr>
<td>
image here
[gf_field num="4"]
</td>
<td>
image here
[gf_field num="5"]
</td>
<td>
image here
[gf_field num="6"]
</td>
</tr>
</tbody>
</table>
[gf_field num="7,8,9,10,11"]
[gf_submit]
[gf_endForm id="1"]
The functionality is what I want, the way I show it above is sort of a first stab at how to do it...I'd be happy to help work through a proper solution though.