Re: ProfileForm Power Page Update after submitting
Hi @Lucas001
Yes, updating or refreshing the form after the update is possible. Are you displaying the profile web form data via a list? If so, you can write a piece of JS for the entity list and refresh the list. Adding example below for the list
$(document).ready(function(){setInterval(function(){$(".view-grid th:first a:first").trigger("click");},10000);});
In a similar fashion, you can reload the page also with some timeout interval. Not an ideal solution, but it works.
Also, have a look at my article: https://ragavanrajan.medium.com/powerapps-portal-finding-current-version-or-clear-portal-cache-901e690c3e6a
Advanced: You can use Power Automate Desktop (RPA) to clear the cache and call the Power Automate Desktop flow via Power Automate cloud flow
Official URL:
One of the most requested feature is "clearing the cache via power automate."
PS: Please feel free to follow me on Medium if you want to learn any exciting content about the power platform
Hope it helps.
------------
If you like this post, give it a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.