Re: Generating popup window after form success

2011-03-31 Thread LLTYK
context: http://tapestry-users.832.n2.nabble.com/Generating-popup-window-after-form-success-tp6225179p6227974.html Sent from the Tapestry Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tape

Re: Generating popup window after form success

2011-03-31 Thread Chris Norris
I'd probably just set a value on the next page to be rendered after the form that would use JavaScript support to create the popup. On Wed, Mar 30, 2011 at 5:13 PM, Rich M wrote: > Hi, > > I'm wondering if there is a good strategy to create a popup window after a > successful form submit. The con

Re: Generating popup window after form success

2011-03-31 Thread David Uttley
Hi Rich, You could use Javascript to submit the form using AJAX and then in the load section popup your dialog. function sendXHRAndUpdate(settings){ var xhrArgs = { form : settings.formId, handleAs : "json", load : function(data) {

Generating popup window after form success

2011-03-30 Thread Rich M
Hi, I'm wondering if there is a good strategy to create a popup window after a successful form submit. The concept here is to popup a Voucher/Coupon window for the user if they complete a successful purchase. I've researched the basics of the concept in terms of HTML forms. You can run some