Refresh data in main list form after editing and saving a selected row through a modal form

from a customer list i am editing a particular customer data.
for this i am calling a nodal form and loads the data and edit and saves. data is updated in database.
after closing this new customer entry form, how to refresh/reload the main list ?

In the Modal, when you click on the button “Save Data” (for eg), you can chain multiple events to be invoked. So, after you save the data, onSuccess you can call the fetch customer API/query again.

You can check out this link for details on how to call another API/query on success of the first one.

Does this help?

yes. working. thanks