<?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: Extending form settings</title>
		<link>https://legacy.forums.gravityhelp.com/topic/extending-form-settings</link>
		<description>Gravity Support Forums Topic: Extending form settings</description>
		<language>en-US</language>
		<pubDate>Sat, 18 Apr 2026 19:45:16 +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/extending-form-settings" rel="self" type="application/rss+xml" />

		<item>
			<title>sciamannikoo on "Extending form settings"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/extending-form-settings#post-94162</link>
			<pubDate>Wed, 21 Nov 2012 17:44:31 +0000</pubDate>
			<dc:creator>sciamannikoo</dc:creator>
			<guid isPermaLink="false">94162@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Found it!&#60;/p&#62;
&#60;p&#62;Here's a good working example by the way: &#60;a href=&#34;http://pastie.org/pastes/3887415&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/pastes/3887415&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Alex, I've read many times official apologies about the lack of documentation for developers.&#60;br /&#62;
I've spent most of this day trying to find how to do such a simple thing and also with your help I've eventually managed to get this additional form setting I was looking for.&#60;/p&#62;
&#60;p&#62;But frankly I'd expect to see some actual action.&#60;/p&#62;
&#60;p&#62;I'll probably write about it in my blog, for helping others with my same needs, and I've seen other posts referring to external resources (provided also from admins/staff like you): this doesn't make look GF very prone on providing good documentation to their users.&#60;/p&#62;
&#60;p&#62;I hope in actual improvements soon, but I don't have high expectations about this.&#60;/p&#62;
&#60;p&#62;At least there is this good support area that (most of the times at least) provides quick help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sciamannikoo on "Extending form settings"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/extending-form-settings#post-94150</link>
			<pubDate>Wed, 21 Nov 2012 16:36:54 +0000</pubDate>
			<dc:creator>sciamannikoo</dc:creator>
			<guid isPermaLink="false">94150@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Alex.&#60;/p&#62;
&#60;p&#62;Thank you for your answer.&#60;/p&#62;
&#60;p&#62;This definitely looks promising, but how I'm supposed to hook to 'gform_before_update'?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Extending form settings"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/extending-form-settings#post-94148</link>
			<pubDate>Wed, 21 Nov 2012 16:22:34 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">94148@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sorry about that. I do think we need some more examples on form settings.&#60;br /&#62;
What you need to do is use the &#34;gform_before_update&#34; javascript hook to save your form settings.&#60;br /&#62;
Something like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function gform_before_update(form){
    form[&#38;quot;my_setting&#38;quot;] = jQuery(&#38;quot;#mysetting&#38;quot;).val();
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I hope this helps.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sciamannikoo on "Extending form settings"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/extending-form-settings#post-94079</link>
			<pubDate>Wed, 21 Nov 2012 12:20:13 +0000</pubDate>
			<dc:creator>sciamannikoo</dc:creator>
			<guid isPermaLink="false">94079@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is a followup of &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/gform_properties_settings-action-is-ignored&#34; rel=&#34;nofollow&#34;&#62;this post&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Right now I've managed to add a new setting in the form general settings (so this is not a new field type, but a form property).&#60;/p&#62;
&#60;p&#62;I've tried to do this following the example provided for the 'gform_field_standard_settings' hook.&#60;/p&#62;
&#60;p&#62;After struggling for a while and trying to understand how standard form's settings work, I've realized that this hook implementation must be different, even though the docs says &#34;This hook functions identically to the gform_field_standard_settings hook.&#34;.&#60;/p&#62;
&#60;p&#62;Anyway, what I think I've understood is that rather than using the SetFieldProperty() javascript function, I must use UpdateFormProperty().&#60;/p&#62;
&#60;p&#62;However, the value is not stored.&#60;br /&#62;
Debugging this function I see that it tries to set the html content of &#34;#gform_&#34; + name (where &#34;name&#34; is the property name I've created), but this element doesn't exists.&#60;/p&#62;
&#60;p&#62;Here's a sample: &#60;a href=&#34;http://pastie.org/5412888&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/5412888&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'm really lost: I've spent the last 4 hours trying to sort out what I'm doing wrong and the official documentation is not really helping.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
