Skip to main content
Nintex Community Menu Bar
Question

How to refresh table after creating a new line via pop up?

  • July 9, 2024
  • 3 replies
  • 19 views

Forum|alt.badge.img+2

I have made a global action on a table which displays a pop up to create a new record in the table. Essentially I just click save and close the pop up (need to make one button for that eventually), but when the pop up closes, the table doesn’t show the new entry. When I refresh the page, the entry shows. What would be a good approach to show the new row in the table without refreshing the page?

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+9

Add an action to Re-Query the model, or if you’re using Javascript use

yourModel.updateData();

Forum|alt.badge.img+20

Or just make the button with multiple actions and query that model.


Forum|alt.badge.img+2

Thanks, used Pat’s solution, pretty straight forward. 🙂