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
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
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) {
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