Microflow from Data Grid 2 with Datasource Type Microflow is always triggered when closing second page

0
Hello dear community, I have a page on which there is a DataGrid2. This DataGrid2 has as source a microflow that executes a SQL query to view and display data from a SQL database. When the user clicks on a row of the table on the page, a second page is opened. If the user closes the second page, the first page with the DataGrid2 is displayed again. My problem now is that every time the user closes the second page, the microflow is retriggered by the DataGrid2. However, if I open the second page as a popup and close it, the microflow is not triggered. Can anyone tell me why this is the case? I would like to prevent the microflow from being retriggered again and again.
asked
1 answers
1

Hi  Hamid Rezaie,

                       When you open the second page as a popup, the first page is not unloaded; it remains active in the background. Therefore, the DataGrid2 doesn’t need to reload its data when the popup is closed.

answered