<?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: How to add value to checkboxes and check if conflicting</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-value-to-checkboxes-and-check-if-conflicting</link>
		<description>Gravity Support Forums Topic: How to add value to checkboxes and check if conflicting</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 14:04:07 +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/how-to-add-value-to-checkboxes-and-check-if-conflicting" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "How to add value to checkboxes and check if conflicting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-value-to-checkboxes-and-check-if-conflicting#post-93515</link>
			<pubDate>Tue, 20 Nov 2012 11:01:29 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">93515@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yeah, as far as I know, you can't give two values to a check box, even just in straight HTML.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Sprutt on "How to add value to checkboxes and check if conflicting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-value-to-checkboxes-and-check-if-conflicting#post-93394</link>
			<pubDate>Tue, 20 Nov 2012 05:32:51 +0000</pubDate>
			<dc:creator>Sprutt</dc:creator>
			<guid isPermaLink="false">93394@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That isn't possible perhaps :)&#60;/p&#62;
&#60;p&#62;I was just hoping to be able to do it aswell, to make the checkboxes look nicer, but maybe it's conflicting with the basic mechanics of HTML..?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How to add value to checkboxes and check if conflicting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-value-to-checkboxes-and-check-if-conflicting#post-93090</link>
			<pubDate>Mon, 19 Nov 2012 15:32:59 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">93090@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I did not know checkboxes could have more than one value.  Is that what you're trying to do, give two values to one checkbox?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Sprutt on "How to add value to checkboxes and check if conflicting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-value-to-checkboxes-and-check-if-conflicting#post-93060</link>
			<pubDate>Mon, 19 Nov 2012 13:48:10 +0000</pubDate>
			<dc:creator>Sprutt</dc:creator>
			<guid isPermaLink="false">93060@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for your response Chris!&#60;/p&#62;
&#60;p&#62;I will look into jQuery for the selection functionality.&#60;/p&#62;
&#60;p&#62;But what about adding a second &#34;value&#34; to each checkbox. I want to have an events name in one and it's time in the other. &#60;a href=&#34;http://deom.se/temp/checkbox_second_value.png&#34; rel=&#34;nofollow&#34;&#62;See example image&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Cheers!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How to add value to checkboxes and check if conflicting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-value-to-checkboxes-and-check-if-conflicting#post-92688</link>
			<pubDate>Sun, 18 Nov 2012 19:17:27 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">92688@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can do this, but the logic and validation will need to be done on the front end of the site, in the browser, using jQuery.  Gravity Forms can only handle the validation after the form is submitted the first time.  It sound like you want to prevent the selection from happening in the first place.  The only way I can think of to handle this functionality is with jQuery (or JavaScript.)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Sprutt on "How to add value to checkboxes and check if conflicting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-value-to-checkboxes-and-check-if-conflicting#post-88943</link>
			<pubDate>Thu, 08 Nov 2012 16:29:32 +0000</pubDate>
			<dc:creator>Sprutt</dc:creator>
			<guid isPermaLink="false">88943@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;I'm making a form which should display a list of events as checkboxes. The users is meant to be able to choose as many as they like, as long as the time of the event is not conflicting with any of the ones they already have chosen.&#60;/p&#62;
&#60;p&#62;So I guess what needs to be done is adding another value field for each checkbox and then run a check for conflicts when new boxes are checked.&#60;/p&#62;
&#60;p&#62;Is this even possible? If so, how? Or maybe there's a better way to do this?&#60;/p&#62;
&#60;p&#62;Thanks in advance, best regards!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
