Forums

Forums / Developing Portals / form flow loading screen between forms

form flow loading screen between forms

3 posts, 1 answered
  1. Missing user
    Missing user avatar
    12 Mar 2024
    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. Missing user
    Missing user avatar
    25 Mar 2024 in reply to Missing user
    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. Missing user
    Missing user avatar
    Answered
    28 Mar 2024
    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