<?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: Real-Time Pre-Filled Select Boxes</title>
		<link>https://legacy.forums.gravityhelp.com/topic/real-time-pre-filled-select-boxes</link>
		<description>Gravity Support Forums Topic: Real-Time Pre-Filled Select Boxes</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 00:48:01 +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/real-time-pre-filled-select-boxes" rel="self" type="application/rss+xml" />

		<item>
			<title>rcalise on "Real-Time Pre-Filled Select Boxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/real-time-pre-filled-select-boxes#post-13662</link>
			<pubDate>Tue, 30 Nov 2010 16:36:06 +0000</pubDate>
			<dc:creator>rcalise</dc:creator>
			<guid isPermaLink="false">13662@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl, I've been through both the MailChimp and CampaignMonitor code and as far as I've been able to tell, they only accomplish part of what I'm looking to do - the form submission end of it, using Infusionsoft's API to send the data.&#60;/p&#62;
&#60;p&#62;Maybe a better example than lead source would be Event Registration drop-downs.&#60;/p&#62;
&#60;p&#62;The first drop-down would contain a list of cities where we have events.&#60;/p&#62;
&#60;p&#62;If Austin, TX is selected, a new dropdown should appear.&#60;/p&#62;
&#60;p&#62;[ Austin, TX    ]&#60;br /&#62;
   [ December 2, 2010 @ 9:00 am ]&#60;br /&#62;
   [ December 5, 2010 @ 10:00 am ]&#60;/p&#62;
&#60;p&#62;Likewise for, say, Boston, MA.&#60;/p&#62;
&#60;p&#62;[ Boston, MA    ]&#60;br /&#62;
   [ December 4, 2010 @ 2:00 pm ]&#60;/p&#62;
&#60;p&#62;(etc)&#60;/p&#62;
&#60;p&#62;Since these dates will constantly change as time passes and new cities/events are added into our system, manually updating them in Gravity is just not an idea situation, so the idea is to bring them in using a URL like this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://domain.com/events/public/events.php?city=AUS&#34; rel=&#34;nofollow&#34;&#62;http://domain.com/events/public/events.php?city=AUS&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Which would return Comma Separated Values that could then be parsed and populated into the appropriate drop-down boxes.&#60;/p&#62;
&#60;p&#62;1,0,2010-12-04,14:00        // City Id, Event Id, Event Date, Event Time&#60;/p&#62;
&#60;p&#62;This way, I could create (in Gravity) one drop-down box of the available cities, and then corresponding pre-populated drop-downs for each city that display conditionally.&#60;/p&#62;
&#60;p&#62;Does that make sense?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Real-Time Pre-Filled Select Boxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/real-time-pre-filled-select-boxes#post-13660</link>
			<pubDate>Tue, 30 Nov 2010 16:19:57 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">13660@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Do you have an example of an Infusionsoft form somewhere that I could look at to see what you are trying to accomplish within Gravity Forms because there may be a better way to go about doing this.  Something along the lines of what we do with MailChimp and Campaign Monitor may be more appropriate.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rcalise on "Real-Time Pre-Filled Select Boxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/real-time-pre-filled-select-boxes#post-13643</link>
			<pubDate>Tue, 30 Nov 2010 14:00:38 +0000</pubDate>
			<dc:creator>rcalise</dc:creator>
			<guid isPermaLink="false">13643@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl,&#60;/p&#62;
&#60;p&#62;The only issue I have with pre_render is that it's form-specific. Is there a way to accomplish this globally based on field name?&#60;/p&#62;
&#60;p&#62;For example:&#60;br /&#62;
1. Any field labeled Contact0LeadCategory would pull in our CSV from it's URL, populate values accordingly.&#60;br /&#62;
2. Another field, Contact0LeadSource has categories for each type of lead source, so when one is selected in the Contact0LeadCategory field, Contact0LeadSource is filtered.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Real-Time Pre-Filled Select Boxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/real-time-pre-filled-select-boxes#post-13633</link>
			<pubDate>Tue, 30 Nov 2010 13:22:14 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">13633@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would have to use PHP and hooks to populate the fields you want to populate.  The PHP will vary depending on what you are trying to do and where the data is coming from.  I can't tell you what that PHP would be because it has too many variables (hardcoded? from a database? from an RSS feed? etc.).&#60;/p&#62;
&#60;p&#62;All I can tell you is what hook you would use to pre-populate a dropdown field in Gravity Forms using PHP and give you  an example of how to implement it.&#60;/p&#62;
&#60;p&#62;Here is a PDF file that contains documentation for the gform_pre_render hook.  This documentation will be available soon on the site when we launch the revised site for Gravity Forms v1.5.  For now you can via the documentation for this hook via the PDF file below.&#60;/p&#62;
&#60;p&#62;GFORM_PRE_RENDER HOOK DOCUMENTATION:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://s3.amazonaws.com/gravityforms/documentation/gform_pre_render.pdf&#34; rel=&#34;nofollow&#34;&#62;http://s3.amazonaws.com/gravityforms/documentation/gform_pre_render.pdf&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rcalise on "Real-Time Pre-Filled Select Boxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/real-time-pre-filled-select-boxes#post-13601</link>
			<pubDate>Tue, 30 Nov 2010 01:26:22 +0000</pubDate>
			<dc:creator>rcalise</dc:creator>
			<guid isPermaLink="false">13601@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I want to offer a pre-filled list of upcoming events for my users to sign up for.&#60;/p&#62;
&#60;p&#62;There's an incoming feed of these events, is there any way to have Gravity Forms automatically update the values of a select box on-the-fly without any user intervention?&#60;/p&#62;
&#60;p&#62;I've tried using the hooks mentioned in other posts, and that I've been able to glean from trying to reverse engineer the add-ons, but I haven't been able to make this work. Can anyone help?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Robert
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
