<?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 User Favorites: cgorton</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/cgorton'>cgorton</a></link>
		<description>Gravity Support Forums User Favorites: cgorton</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 03:50:51 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Alex Cancado on "When fields change"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/when-fields-change#post-1247</link>
			<pubDate>Wed, 28 Oct 2009 08:51:21 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">1247@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes. Gravity Form has a hook that can be used to access all field data after a form has been submitted. You could use that hook to write the field values to another DB or send it to a service. We have some code snippets that should get you started.&#60;br /&#62;
You could also do an export of the entry database tables if you prefer to implement it as a batch process instead of realtime.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cgorton on "When fields change"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/when-fields-change#post-1243</link>
			<pubDate>Tue, 27 Oct 2009 21:07:26 +0000</pubDate>
			<dc:creator>cgorton</dc:creator>
			<guid isPermaLink="false">1243@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the thorough reply.&#60;/p&#62;
&#60;p&#62;I'm using cForms 11.0 and his handling of checkboxes is no better than what you describe, if not worse.&#60;/p&#62;
&#60;p&#62;In a cForms export, I get all forms data on 1 CSV. Each time a different form is listed, a new header row is created. So, if form 1 was submitted 3 times, then form 2 was submitted 2 times, then another form 1, you'd get a form 1 hear row, 3 rows of form 1 data, a form 2 header row, 2 rows of form 2 data, a form 1 header row and a form 1 data row. &#60;/p&#62;
&#60;p&#62;I usually turn the header rows off for export anyway because sorting by form name is the first thing I do and the header rows don't survive the sort.&#60;/p&#62;
&#60;p&#62;I can't think of a better way to handle it than what you're doing. The history is important. cForms actually writes &#34;-&#34; for unchecked and &#34;1&#34; for checked, which loses the data. (There might be a way around this, I can't recall.) I definitely want the values in there for the history.&#60;/p&#62;
&#60;p&#62;It means that we'll have to parse this carefully when merging into our main databases. That's really what I'm getting at. We take lead gen data and merge it back into a corporate marketing database.&#60;/p&#62;
&#60;p&#62;Are there any ways to write Gravity forms data to external DB's? Or send the data to a service?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "When fields change"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/when-fields-change#post-1199</link>
			<pubDate>Mon, 26 Oct 2009 21:54:32 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">1199@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Craig,&#60;br /&#62;
Checkboxes are surprisingly tricky fields, especially when you start changing them on the fly. I am not sure Gravity Forms handles it any better than the plugin you currently use. I am going to explain how our checkbox data is handled with an example.&#60;br /&#62;
Lets say i have a checkbox with two items: &#34;First&#34; and &#34;Second&#34;&#60;br /&#62;
Somebody submits a form with &#34;First&#34; checked.&#60;br /&#62;
If you export the entries for that form, you will get a csv file that looks like the following&#60;/p&#62;
&#60;p&#62;&#34;First&#34;,&#34;Second&#34;&#60;br /&#62;
&#34;First&#34;,&#34;&#34;&#60;/p&#62;
&#60;p&#62;Note: First row is a header row.&#60;/p&#62;
&#60;p&#62;Now you decide to add a new item &#34;Third&#34; to that field, and a user submits the form with &#34;First&#34; and &#34;Third&#34; checked. Then your export would look like the following:&#60;/p&#62;
&#60;p&#62;&#34;First&#34;,&#34;Second&#34;,&#34;Third&#34;&#60;br /&#62;
&#34;First&#34;,&#34;&#34;,&#34;&#34;&#60;br /&#62;
&#34;First&#34;,&#34;&#34;,&#34;Third&#34;&#60;/p&#62;
&#60;p&#62;Now you decide to rename &#34;First&#34; to &#34;First Item&#34; and a user submits the form with &#34;First Item&#34;, &#34;Second&#34; and &#34;Third&#34; checked. Your export would then look like the following:&#60;/p&#62;
&#60;p&#62;&#34;First Item&#34;,&#34;Second&#34;,&#34;Third&#34;&#60;br /&#62;
&#34;First&#34;,&#34;&#34;,&#34;&#34;&#60;br /&#62;
&#34;First&#34;,&#34;&#34;,&#34;Third&#34;&#60;br /&#62;
&#34;First Item&#34;,&#34;Second&#34;,&#34;Third&#34;&#60;/p&#62;
&#60;p&#62;Now you decide to reorder the field so that &#34;Third&#34; comes before &#34;Second&#34;. A user then submits a form with &#34;First Item&#34;,&#34;Second&#34;,&#34;Third&#34; checked. Your export would look like the following:&#60;/p&#62;
&#60;p&#62;&#34;First Item&#34;,&#34;Third&#34;,&#34;Second&#34;&#60;br /&#62;
&#34;First&#34;,&#34;&#34;,&#34;&#34;&#60;br /&#62;
&#34;First&#34;,&#34;&#34;,&#34;Third&#34;&#60;br /&#62;
&#34;First Item&#34;,&#34;Second&#34;,&#34;Third&#34;&#60;br /&#62;
&#34;First Item&#34;,&#34;Third&#34;,&#34;Second&#34;&#60;/p&#62;
&#60;p&#62;I hope this answers your question.&#60;br /&#62;
To be honest, I am not sure this is the best way to handle the checkbox field, but it does have the advantage of keeping the history of the submissions so that you don't lose any data (even though the headers get a bit out of sync with the data under it).&#60;br /&#62;
You seem to have a good amount of experience dealing with checkboxes. If you have an opinion on how you would like to see them working, I would love to hear it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cgorton on "When fields change"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/when-fields-change#post-1170</link>
			<pubDate>Mon, 26 Oct 2009 09:17:30 +0000</pubDate>
			<dc:creator>cgorton</dc:creator>
			<guid isPermaLink="false">1170@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm using a forms plug-in now with an inconvenient defect and I'd like to know how Gravity forms deals with this.&#60;/p&#62;
&#60;p&#62;Let's say I have a form with 4 checkboxes. A couple months after it starts collecting data, I am asked to add a checkbox, or re-name one, or re-order them. What happens to the data when exporting?&#60;/p&#62;
&#60;p&#62;My problem now is that the column headers get screwed up. If I re-name a field, the old entries assume this new name, too. I've had to resort to creating a new form each time a change is made to preserve the correct data, but it makes for a headache when our data group needs to harvest the data.&#60;/p&#62;
&#60;p&#62;How does Gravity forms deal with this?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Craig
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
