I do a website with site.com. My page is doing like this :
- a form for add a data for my object
- a table with the data of my object.
When I add a data with my form, it's necessary I do F5(refresh) for data appears in the table.
It's possible to do this automatic ?
|
|
You can do it by specifying Show another page for When Successful property of the SUBMIT properties of the form which would result in the entire page refreshing, including the table.
The result will be that when the form is submitted successfully the entire page is refreshed, showing the end user the latest data available in the table. This isn't a partial page refresh, though. To do that, I believe that you would need to handle the asynchronous form submission, response, and table refresh yourself using JavaScript. |
||||
|
|
