This topic is locked

Loading... Page Loading... after record added and before page redirect

12/16/2013 1:03:05 PM
PHPRunner General questions
C
copper21 author

Hello,
I am wondering if there is a way to display something similar to this post: http://www.asprunner.com/forums/topic/17287-loading-please-wait-on-addedit-page/, but after a record is added, not while the add or edit page loads. My setup consists of an add page. When the add page is filled out and the save button is pressed, the user is directed to a list page that often takes a bit to load due to the amount of data being shown. While the query executes for the list page, the user is still looking at the add page. I want to show "Loading" or something like that until the list page has all of the data and then displays itself.
Thank you in advance for your assistance,
Brian

Sergey Kornilov admin 12/16/2013

Use built-in 'Loading indicator' option for that List page? Check Miscellaneous screen in PHPRunner.

C
copper21 author 12/16/2013



Use built-in 'Loading indicator' option for that List page? Check Miscellaneous screen in PHPRunner.


Sergey,
Thanks for the quick response. I do have that enabled, but the problem I am coming across is not so much with the list page. The user fills out the add page. The data entered into the add page then constructs the search URL to be redirected to the list page. So when someone fills in data in the "Color" field in the add page, after record added, the user is redirected to the list page: http://server/project/Crayon_Colors_list.php?(colors~contain~blue). The problem is when someone clicks to save the record in the add page, the user will view the add page for a bit until where I assume the list page has the data. I am afraid that the user will think that the save was not completed and keep on clicking the save button on the add page because the are not immediately directed to the list page. The search created by the add page is connected to a table with approximately 12 million records.
Brian