<?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: gform_field_standard_settings doesn&#039;t work</title>
		<link>https://legacy.forums.gravityhelp.com/topic/gform_field_standard_settings-doesnt-work</link>
		<description>Gravity Support Forums Topic: gform_field_standard_settings doesn&#039;t work</description>
		<language>en-US</language>
		<pubDate>Fri, 17 Apr 2026 05:08:44 +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/gform_field_standard_settings-doesnt-work" rel="self" type="application/rss+xml" />

		<item>
			<title>fuhrmara on "gform_field_standard_settings doesn&#039;t work"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_field_standard_settings-doesnt-work#post-51597</link>
			<pubDate>Wed, 07 Mar 2012 09:17:26 +0000</pubDate>
			<dc:creator>fuhrmara</dc:creator>
			<guid isPermaLink="false">51597@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi !&#60;/p&#62;
&#60;p&#62;Instead of all field-types of the current form, is there a function to retrieve all registered field-types.&#60;br /&#62;
This should be available at a gform_editor_js action function.&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Ralf
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fuhrmara on "gform_field_standard_settings doesn&#039;t work"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_field_standard_settings-doesnt-work#post-51574</link>
			<pubDate>Wed, 07 Mar 2012 04:19:56 +0000</pubDate>
			<dc:creator>fuhrmara</dc:creator>
			<guid isPermaLink="false">51574@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Another questions to this.&#60;/p&#62;
&#60;p&#62;All happens at the admin-section.&#60;br /&#62;
So it's better to add a if (is_admin()) in front of the add_action functions,&#60;br /&#62;
so this will only happened at the backend ?&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Ralf
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fuhrmara on "gform_field_standard_settings doesn&#039;t work"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_field_standard_settings-doesnt-work#post-51573</link>
			<pubDate>Wed, 07 Mar 2012 04:16:29 +0000</pubDate>
			<dc:creator>fuhrmara</dc:creator>
			<guid isPermaLink="false">51573@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi !&#60;/p&#62;
&#60;p&#62;Thanks.&#60;br /&#62;
But how could a retrieve a list of all field-types of the current form ?&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Ralf
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "gform_field_standard_settings doesn&#039;t work"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_field_standard_settings-doesnt-work#post-51538</link>
			<pubDate>Tue, 06 Mar 2012 21:05:40 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">51538@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Ralf, in this piece of the code here:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_editor_js&#38;quot;, &#38;quot;editor_script&#38;quot;);
function editor_script(){
    ?&#38;gt;
    &#38;lt;script type=&#38;#39;text/javascript&#38;#39;&#38;gt;
        //adding setting to fields of type &#38;quot;text&#38;quot; and &#38;quot;radio&#38;quot;
        fieldSettings[&#38;quot;radio&#38;quot;] += &#38;quot;, .encrypt_setting&#38;quot;;
	fieldSettings[&#38;quot;text&#38;quot;] += &#38;quot;, .encrypt_setting&#38;quot;;

        //binding to the load field settings event to initialize the checkbox
        jQuery(document).bind(&#38;quot;gform_load_field_settings&#38;quot;, function(event, field, form){
            jQuery(&#38;quot;#field_encrypt_value&#38;quot;).attr(&#38;quot;checked&#38;quot;, field[&#38;quot;encryptField&#38;quot;] == true);
        });
    &#38;lt;/script&#38;gt;
    &#38;lt;?php
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;All you need to do is add the field types you'd like to apply this to. You can see above I added:&#60;/p&#62;
&#60;p&#62;fieldSettings[&#34;radio&#34;] += &#34;, .encrypt_setting&#34;;&#60;/p&#62;
&#60;p&#62;Hope this helps!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fuhrmara on "gform_field_standard_settings doesn&#039;t work"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_field_standard_settings-doesnt-work#post-51515</link>
			<pubDate>Tue, 06 Mar 2012 18:46:44 +0000</pubDate>
			<dc:creator>fuhrmara</dc:creator>
			<guid isPermaLink="false">51515@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It looks like that the hook gform_field_standard_settings doesn't work right.&#60;/p&#62;
&#60;p&#62;When you use the example from &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_field_standard_settings&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_field_standard_settings&#60;/a&#62;&#60;br /&#62;
this only works at the default text field.&#60;br /&#62;
But this doesn't have any effect to all other fields.&#60;/p&#62;
&#60;p&#62;Why ?&#60;br /&#62;
And how could i add a setting to all field-types ?&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Ralf
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
