Form wizard thank you page

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
6/6/2012 11:45:03 AM
Gravatar
Total Posts 24

Re: Form wizard thank you page

Where can I find that function, which submit the form? 
I was thinking to add something like that in it: 

$(document).load(function() {
                $(".rightBlock").stop().animate({
                        marginTop: 0
                    });
});

 

PS. For some reasons, my /Admin/PageTree.aspx is blank! surprise No list of pages at all. 

And how do you apply a certain skin just to one page? I could not find that option in admin panel... sorry for being blind :) - I found that option.

6/25/2012 9:21:08 AM
Gravatar
Total Posts 18439

Re: Form wizard thank you page

Hi,

In follow up, another customer was able to provide an exported form definition that had a multi page form with the same scroll problem as you reported, and I was able to come up with a solution. There will be a setting in the next release of Form Wizard Pro to force scrolling the page back to the top on each submission.

You can also solve this today in your copy by editing the file /FormWizard/FormWizardModule.ascx with a text editor.

Put this just inside the <portal:InnerBodyPanel and just above the <asp:UpdatePanel

<script type="text/javascript">
    function formWizScrollTop() {
        window.document.body.scrollTop = 0;
        window.document.documentElement.scrollTop = 0;
    }
    var prm = Sys.WebForms.PageRequestManager.getInstance();
    prm.add_endRequest(formWizScrollTop);
</script>

Hope that helps,

Joe

You must sign in to post in the forums. This thread is closed to new posts.