Hi Psuhpendra,
Close Page Action: The Close Page activity is an instruction that the Mendix server sends to the client (the user's browser). It tells the client: "close the currently open page and return to the previous page in the navigation stack."
When you press F5, the browser reloads everything. The Mendix client is re-initialized and loses its entire internal navigation history. The reloaded detail page now becomes the first and only page in the navigation stack from the Mendix client's perspective.
As a result, when the microflow runs and sends the Close Page command, the client has no "previous page" to go back to. Consequently, the action fails silently, or the button is disabled because the client understands the action cannot be performed.
The best solution is to use the Show Page action to direct the user to a specific page.
Let me know if you have any question.
Édrien Kauê
Hey!
I have noticed this behavior in my application as well
But i believe that this only happens locally and should not be the case on other environments.