Hi,
In reactive app. when the "page refresh" (same screen ..) occurs it didn't reload the entire DOM.
How can I force the DOM to reload ?
I've tried to use the "Destination" on the client action but it didn't work ...
Thanks a lot for any help on this!
Hi Renaud,
Based on the mentioned case you can try the below mentioned solutions
Solution
1) Using the JS node, you can go execute the below JS snippet for hard screen refresh
location.reload(true);
https://stackoverflow.com/questions/2099201/javascript-hard-refresh-of-current-page
2) Use External Node as the destination node with Screen Url
Hope this helps you!
Regards,
Benjith Sam
Benjith Sam wrote:
Hi Sam,
thanks for the tip!
Solution 1 works as expected.
The second solution didn't work (That was already part of my previous test ...)
Best regards,
Renaud
Renaud Diez wrote:
You are welcome, Renaud :)
I'm glad that it helped you :)
Did you try finished the action flow in a screen (Current Screen) ?
Cheers,
Miguel
Miguel Verdasca wrote:
Hi Miguel,
I test this previously and it didn't work. On Reactive app. the DOM is not entirely refreshed.