<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Table Structure Layout for Form (Rows &#38; Columns)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/table-structure-layout-for-form-rows-columns</link>
		<description>Gravity Support Forums Topic: Table Structure Layout for Form (Rows &amp; Columns)</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 18:24:54 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/table-structure-layout-for-form-rows-columns" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Table Structure Layout for Form (Rows &#38; Columns)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/table-structure-layout-for-form-rows-columns#post-224832</link>
			<pubDate>Fri, 26 Apr 2013 01:59:01 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">224832@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It sure is, the following example targets the first column of field 2 on form 6, you would place this in your functions.php file between the opening &#38;lt;?php and closing  ?&#38;gt; tags&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_column_input_6_2_1&#38;quot;, &#38;quot;set_column&#38;quot;, 10, 5);
function set_column($input_info, $field, $column, $value, $form_id){
    return array(&#38;quot;type&#38;quot; =&#38;gt; &#38;quot;select&#38;quot;, &#38;quot;choices&#38;quot; =&#38;gt; &#38;quot;First Choice,Second Choice&#38;quot;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Or if you want to specify values for each choice you would use this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_column_input_6_2_1&#38;quot;, &#38;quot;set_column&#38;quot;, 10, 5);
function set_column($input_info, $field, $column, $value, $form_id){
    return array(&#38;quot;type&#38;quot; =&#38;gt; &#38;quot;select&#38;quot;, &#38;quot;choices&#38;quot; =&#38;gt; array(
            array(&#38;quot;text&#38;quot;=&#38;gt;&#38;quot;First Choice&#38;quot;, &#38;quot;value&#38;quot;=&#38;gt;&#38;quot;First&#38;quot;),
            array(&#38;quot;text&#38;quot;=&#38;gt;&#38;quot;Second Choice&#38;quot;, &#38;quot;value&#38;quot;=&#38;gt;&#38;quot;Second&#38;quot;)
           ));
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here's the relavant page in the documentation &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_column_input&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_column_input&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shonari on "Table Structure Layout for Form (Rows &#38; Columns)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/table-structure-layout-for-form-rows-columns#post-224321</link>
			<pubDate>Thu, 25 Apr 2013 17:58:09 +0000</pubDate>
			<dc:creator>Shonari</dc:creator>
			<guid isPermaLink="false">224321@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Awesomeness! Next question... Is it possible to set one of the columns to be a dropdown with specific values?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Table Structure Layout for Form (Rows &#38; Columns)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/table-structure-layout-for-form-rows-columns#post-224285</link>
			<pubDate>Thu, 25 Apr 2013 17:45:21 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">224285@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@david @rob maybe you could add an example showing the list field functionality to the demo site during the upcoming documentation updates for 1.7
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Table Structure Layout for Form (Rows &#38; Columns)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/table-structure-layout-for-form-rows-columns#post-224283</link>
			<pubDate>Thu, 25 Apr 2013 17:34:19 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">224283@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Rather than several fields arranged into columns using CSS you would use a List field for this with multiple columns enabled, when displayed on the front end the visitor would be able to add or remove rows as required.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/List&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/List&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shonari on "Table Structure Layout for Form (Rows &#38; Columns)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/table-structure-layout-for-form-rows-columns#post-224227</link>
			<pubDate>Thu, 25 Apr 2013 16:32:28 +0000</pubDate>
			<dc:creator>Shonari</dc:creator>
			<guid isPermaLink="false">224227@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;Is it possible to format the form to resemble a table/excel spreadsheet? Each row would be one entry. The user would then be able to add a row if they ran out. When the form is submitted it submits the form as rows of entries.&#60;/p&#62;
&#60;p&#62;Please see below image to demonstrate what im talking about&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://img109.imageshack.us/img109/3498/formmockup.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img109.imageshack.us/img109/3498/formmockup.jpg&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
