Forums

Forums / Developing Portals / form flow loading screen between forms

form flow loading screen between forms

3 posts, 1 answered
  1. Mike Cohen
    Mike Cohen avatar
    31 posts
    Registered:
    10 Aug 2021
    12 Mar
    Link to this post
    when using form flow is there any way to change the blank white screen that shows between form loads?  In some cases we see 8-10 seconds of a blank white webpage immediately after we've clicked from one form in the flow to the next. 

    Even a static "loading page" would help.  Does anyone know how to add some type of flow progress indiciator since 8-10 seconds is an enternity in website submission terms. 

    Thanks.
  2. Mike Cohen
    Mike Cohen avatar
    31 posts
    Registered:
    10 Aug 2021
    25 Mar in reply to Mike Cohen
    Link to this post
    Bump. 

    Still looking for a way not to display 6-10 seconds of a blank white screen while waiting for form submissions. 
  3. Mike Cohen
    Mike Cohen avatar
    31 posts
    Registered:
    10 Aug 2021
    Answered
    28 Mar
    Link to this post
    Issue resolved.  Adam B sent me this code to run between the last form and the final success page to show during the loading time.  

         //Run this on pre submit
        window.scrollTo(0, 0); // scrolls to top of page so progress wheel is on screen 
       kendo.ui.progress($("body"), true);

         //Run this on post submit 
        kendo.ui.progress($("body"), false);

    Thanks Adam. 



3 posts, 1 answered