wimtracking2 Posted July 11 Report Share Posted July 11 I have a search form with a tabular report displayed below the search on a webpage, Page 1. When user clicks update, they are taken to a new webpage, Page 2, that opens in a new tab. On Page 2, they can edit the details of the record and take other actions like make an association to this record. The user would then close the tab with Page 2 and return to the tab with Page 1 where their search results are presented in the tabular report. The data they entered on Page 2, however, is not displayed in the tabular report on Page 1 and if they refresh the webpage, their search filters are removed and they have to search again. I am looking for solutions such as: - Add a button that refreshes just the tabular report section of the datapage - Add a button that refreshes an individual record in the tabular report - Keep the search parameters upon refresh of the webpage Quote Link to comment Share on other sites More sharing options...
Volomeister Posted July 17 Report Share Posted July 17 Hi @wimtracking2 Are the search form and tabular report the same DataPage or are these two separate DataPages? If this is one DataPage, you can separate search and report into 2 DataPages and deploy both of them on your webpage. In this setup, when clicking on the search again, it will refresh just the tabular report part without refreshing the search parameters. As a search form, you will use regular submission form DataPage, which will pass and receive respective search parameters parameters And on the tabular report, you add filters that receive these external parameters on load For the form to not trigger page reload, the destination after record submit must be set to the "Same form" And also, this JS snippet must be added to the header or footer of the form <script> document.addEventListener('BeforeFormSubmit', function(event) { event.preventDefault(); </script> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.