<?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: Partially Modal Multi-Page Form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/partially-modal-multi-page-form</link>
		<description>Gravity Support Forums Topic: Partially Modal Multi-Page Form</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 08:27:33 +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/partially-modal-multi-page-form" rel="self" type="application/rss+xml" />

		<item>
			<title>David Smith on "Partially Modal Multi-Page Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/partially-modal-multi-page-form#post-24784</link>
			<pubDate>Wed, 04 May 2011 14:43:45 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">24784@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad to hear it! Are you able to share the finished product yet? If not, make sure you do when you can. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bakelly on "Partially Modal Multi-Page Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/partially-modal-multi-page-form#post-24783</link>
			<pubDate>Wed, 04 May 2011 14:34:04 +0000</pubDate>
			<dc:creator>bakelly</dc:creator>
			<guid isPermaLink="false">24783@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks again for your help David. I was able to craft a solution that worked.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Partially Modal Multi-Page Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/partially-modal-multi-page-form#post-23745</link>
			<pubDate>Wed, 20 Apr 2011 11:16:56 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">23745@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Most modal window scripts have a built in function that can be called to close the modal window.&#60;/p&#62;
&#60;p&#62;In regards to opening the second form in the parent window... theoretically you could add (via javascript) a target attribute to the first form element and specify &#34;_top&#34; to target the parent page. Give it a shot and see how it works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bakelly on "Partially Modal Multi-Page Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/partially-modal-multi-page-form#post-23741</link>
			<pubDate>Wed, 20 Apr 2011 08:51:59 +0000</pubDate>
			<dc:creator>bakelly</dc:creator>
			<guid isPermaLink="false">23741@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the response David! I like your assessment; using two forms and passing the values would probably be easier. I'll be sure to give that a shot. &#60;/p&#62;
&#60;p&#62;Do you have any idea how I can show the second multi-page form in the parent window instead? It currently opens inside the modal window.&#60;/p&#62;
&#60;p&#62;Also, might you have any suggestions on automatically closing the modal window upon submission? Normally I would use the submit button's onclick to do this, but because the form display code is shared and the whole form is called via php or a shortcode (instead of each element individually), I'm having a hard time locating where I can inject an instruction into the Gravity code to close the modal automatically and thus eliminate a click.&#60;/p&#62;
&#60;p&#62;I understand this is borderline out-of-scope for you guys, but would appreciate any input on how I might accomplish this using Gravity Forms.&#60;/p&#62;
&#60;p&#62;Thanks again for the quick response.&#60;br /&#62;
Brad
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Partially Modal Multi-Page Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/partially-modal-multi-page-form#post-23738</link>
			<pubDate>Wed, 20 Apr 2011 07:56:08 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">23738@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I think this might be more readily accomplished by created two separate forms. One simple single page form for the modal window which when submitted would pass the submitted information via query string to a second multi-page form. &#60;/p&#62;
&#60;p&#62;The information submitted from the first form could then be populated into hidden fields on the second form so that all the form information is still available on the second form submission entry.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bakelly on "Partially Modal Multi-Page Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/partially-modal-multi-page-form#post-23723</link>
			<pubDate>Tue, 19 Apr 2011 22:43:12 +0000</pubDate>
			<dc:creator>bakelly</dc:creator>
			<guid isPermaLink="false">23723@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey there. I've been struggling with this for the last few hours, hopefully someone knows the answer. I've followed Kevin's Fancy Box modal tutorial, and I've got it working beautifully. &#60;/p&#62;
&#60;p&#62;What I'd like to do however, is have the first page of a multi-page form inside the modal window, but on submit, I'd like the modal window to close, and I'd like to parent window to load a second page, passing the submitted variables from the modal form.&#60;/p&#62;
&#60;p&#62;For example, the user clicks a link to select a specific product. The modal window is popped on the click, and prompts them for their zip code. When they hit submit, the modal window closes, and the parent window goes to the product configuration page, where the zip is passed to a hidden field.&#60;/p&#62;
&#60;p&#62;I can see how the functionality could be done with a standard HTML form using onclick with the submit button. I've tried calling Fancy Box's close-window function in form_display.php (I think between lines 500 and 530, off the top of my head) but haven't had much luck.&#60;/p&#62;
&#60;p&#62;I should add that right now, as I would expect because of my form 1 redirect settings, upon submitting the modal form, my 2nd page (the aforementioned product config page) loads inside the modal, rather than the parent with the modal closed.&#60;/p&#62;
&#60;p&#62;Does anyone have any suggestions? Thanks.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Brad Kelly
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
