<?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: Predictive field - Ajax</title>
		<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax</link>
		<description>Gravity Support Forums Topic: Predictive field - Ajax</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 09:15:39 +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/predictive-field-ajax" rel="self" type="application/rss+xml" />

		<item>
			<title>webikon on "Predictive field - Ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax#post-25521</link>
			<pubDate>Sat, 14 May 2011 06:14:31 +0000</pubDate>
			<dc:creator>webikon</dc:creator>
			<guid isPermaLink="false">25521@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can use jQuery UI too &#60;a href=&#34;http://jqueryui.com/demos/autocomplete/&#34; rel=&#34;nofollow&#34;&#62;http://jqueryui.com/demos/autocomplete/&#60;/a&#62; or &#60;a href=&#34;http://code.drewwilson.com/entry/autosuggest-jquery-plugin&#34; rel=&#34;nofollow&#34;&#62;http://code.drewwilson.com/entry/autosuggest-jquery-plugin&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Predictive field - Ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax#post-19073</link>
			<pubDate>Mon, 21 Feb 2011 12:39:28 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">19073@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It would go in your WordPress theme, in the theme template for the template that is used to display the form.  Never edit Gravity Forms code, it makes upgrading difficult.  Customizations are always designed to be added to your theme or child theme if using a framework, which won't impact Gravity Forms upgrades.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>greentypewriter on "Predictive field - Ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax#post-19049</link>
			<pubDate>Mon, 21 Feb 2011 01:44:13 +0000</pubDate>
			<dc:creator>greentypewriter</dc:creator>
			<guid isPermaLink="false">19049@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm also trying to autocomplete fields and i'm new to jquery. I just don't know know where to add the code. Would it go into my WP theme code or into GF code? (Sorry if this is a dumb question)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Predictive field - Ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax#post-16881</link>
			<pubDate>Sun, 23 Jan 2011 00:57:36 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16881@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If the list of stores will be a static list, it might be simplest to just hard code it into the &#34;lookup&#34; property of the ajax script above.&#60;/p&#62;
&#60;p&#62;If the store names should be based on previously entered submissions and you are familiar with PHP, I would recommend querying the Gravity Form database to retrieve the previously submitted store names.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>remotecontroldesign on "Predictive field - Ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax#post-16811</link>
			<pubDate>Fri, 21 Jan 2011 20:24:50 +0000</pubDate>
			<dc:creator>remotecontroldesign</dc:creator>
			<guid isPermaLink="false">16811@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok thanks for the tip, I should be able to work it out.&#60;/p&#62;
&#60;p&#62;How would you recommend to store the store names, under a category or as a custom field?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Predictive field - Ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax#post-16774</link>
			<pubDate>Fri, 21 Jan 2011 11:48:47 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16774@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there, since a Gravity Form outputs just like any other form, you an apply a jQuery autocomplete plugin to whichever field you'd like:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.devbridge.com/projects/autocomplete/jquery/&#34; rel=&#34;nofollow&#34;&#62;http://www.devbridge.com/projects/autocomplete/jquery/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There are two primary ways of populating the list of values used to query this database:&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Ajax, which would run a function that queries the database and returns a list of suggest values&#60;/li&#62;
&#60;li&#62;Manual PHP, when the form is loaded you run a PHP function that queries the database once for a list of all the current values and then the script would use this list of values to populate the suggested values rather than an ajax search every time.&#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;Both options require a bit of knowledge of PHP and Javascript, so if you are not familiar with either, you might want to consider hiring a developer to assist with this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>remotecontroldesign on "Predictive field - Ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/predictive-field-ajax#post-16745</link>
			<pubDate>Fri, 21 Jan 2011 00:57:30 +0000</pubDate>
			<dc:creator>remotecontroldesign</dc:creator>
			<guid isPermaLink="false">16745@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Guys,&#60;/p&#62;
&#60;p&#62;I would like to make a form that has a predictive field, similar to what is used on the title field on the forum post. Basically I want to have a list of stores stored and if someone starts typing &#34;Walmart&#34; and it already exists then I would like it to show and and you can select it.&#60;/p&#62;
&#60;p&#62;Any help would be great!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
