I need to list out all of the recently entered in form field after they have been submitted and also display account of the number of records listed.
Web page with a form and three fields. After they submit the first time I need to return to the same page, with the addition of displaying the three fields (record) in a table below the form and a total records value of 1. After they submit a second time I need to return to the page, but now displaying both the first and second records and a total records value of 2. There would be a clear screen button to remove the recently entered records from the web page.
This is possible but not trivial. It either requires multiple runs through a Workflow process (one for each action) along with elements displaying conditionally, and most likely more than one data mapping configuration (original data, submitted data + lookup of the original).
Alternatively, this could be built using some AJAX requests to a Workflow process, which only takes a single template but requires a bit more knowledge of JavaScript and jQuery. This method would, however, be faster since you don’t reprocess the whole template but only require a request/response in the form of a JSON string between the page and Workflow.
The complexity of either method goes beyond what I can show in a simple example on this forum, however.