<?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: Disable/bypass validation of fields, esp. checkboxes</title>
		<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes</link>
		<description>Gravity Support Forums Topic: Disable/bypass validation of fields, esp. checkboxes</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 22:09:23 +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/forcedisablebypass-validation-of-checkboxes" rel="self" type="application/rss+xml" />

		<item>
			<title>MMontgomery on "Disable/bypass validation of fields, esp. checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes#post-34338</link>
			<pubDate>Sat, 03 Sep 2011 10:35:46 +0000</pubDate>
			<dc:creator>MMontgomery</dc:creator>
			<guid isPermaLink="false">34338@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Have similar Issue , Will monitor to see if there's any resolve :::
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Disable/bypass validation of fields, esp. checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes#post-34012</link>
			<pubDate>Wed, 31 Aug 2011 10:08:01 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">34012@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;As far as I can tell, that option should be all you need to do. I am gonna need to take a closer look at it. Is there any way you can put this on a public test site? I will be difficult for me to help you without actually seeing what is going on.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stevehong on "Disable/bypass validation of fields, esp. checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes#post-33970</link>
			<pubDate>Tue, 30 Aug 2011 19:57:15 +0000</pubDate>
			<dc:creator>stevehong</dc:creator>
			<guid isPermaLink="false">33970@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm running Gravity Forms Version 1.5.2.8.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Disable/bypass validation of fields, esp. checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes#post-33966</link>
			<pubDate>Tue, 30 Aug 2011 19:32:33 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">33966@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What version of Gravity Forms are you running?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stevehong on "Disable/bypass validation of fields, esp. checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes#post-33953</link>
			<pubDate>Tue, 30 Aug 2011 17:29:37 +0000</pubDate>
			<dc:creator>stevehong</dc:creator>
			<guid isPermaLink="false">33953@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I thought allowing dynamic population would fix it, but there's no difference whether I check that option or not. My Javascript changes the values in the DOM before submission, and the checkboxes come back with errors. Is there something else I need to do?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Disable/bypass validation of fields, esp. checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes#post-33939</link>
			<pubDate>Tue, 30 Aug 2011 15:39:55 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">33939@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is a security feature to prevent users from changing the price in the DOM and submitting the form with the wrong price.&#60;/p&#62;
&#60;p&#62;To disable that validation, set your checkbox fields to &#34;allow field to be populated dynamically&#34; in the advanced tab. When that option is checked, the state validation is bypassed.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stevehong on "Disable/bypass validation of fields, esp. checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forcedisablebypass-validation-of-checkboxes#post-33841</link>
			<pubDate>Mon, 29 Aug 2011 15:45:23 +0000</pubDate>
			<dc:creator>stevehong</dc:creator>
			<guid isPermaLink="false">33841@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In short, I want to know how to disable validation of a field, regardless its value. I'm using Javascript to dynamically change the values of pricing checkboxes based on user input in other fields. It seems that something in the standard validation of checkboxes causes a failure whenever the values are altered in the DOM. &#60;/p&#62;
&#60;p&#62;So I looked at the validation hook and tried to bypass validation of the field by adding a class &#34;skipValidation&#34; to the checkboxes and setting &#60;code&#62;$field[&#38;#39;failed_validation&#38;#39;] = false;&#60;/code&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.pastie.org/2450179&#34; rel=&#34;nofollow&#34;&#62;http://www.pastie.org/2450179&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But the front-end effect of this is only to give the appearance that the field is valid. The form itself still seems to be invalid and displays &#34;There was a problem with your submission. Errors have been highlighted below.&#34; But there are no actual errors highlighted.&#60;/p&#62;
&#60;p&#62;It seems to me that I can't actually just validate the whole form with &#60;code&#62;$validation_result[&#38;#39;is_valid&#38;#39;] = true;&#60;/code&#62;&#60;br /&#62;
because then none of the other fields will attempt validation, and I've essentially turned off validation for the entire form.&#60;/p&#62;
&#60;p&#62;I think my method would actually work if I wasn't using a multiple input field like checkboxes. The validation hook documentation seemed to indicate something is different about checkboxes: &#34;This method for retrieving the field value will work for most fields. Known exceptions are checkboxes and fields with multiple inputs. We will cover those later as an addition to this walk-through.&#34; I couldn't find this additional document covering these exceptions.&#60;/p&#62;
&#60;p&#62;I need to use the pricing options because I'm trying to send additional costs to Cart66, which picks up the cost increases when I add, for example, &#34; +$1000&#34; to the value of the choices. However, the additional costs are not fixed and need to be calculated, so I'm using Javascript to calculate and modify the input values in the DOM. Here's what I'm doing to the HTML:&#60;br /&#62;
&#60;a href=&#34;http://www.pastie.org/2450390&#34; rel=&#34;nofollow&#34;&#62;http://www.pastie.org/2450390&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;In summary, I would appreciate if someone can help me to bypass validation of a specific set of checkboxes or show me another way to get Cart66 to pick up dynamically calculated cost increases to a product when integrated with Gravity Forms.  Thanks.&#60;/p&#62;
&#60;p&#62;P.S. I only code a little Javascript, so please try to explain any PHP answers simply. Also, I can't post a URL to a live example, as I'm still in development.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
