815
Views
5
Comments
Solved
How to refresh a screen DOM in reactive application
Question

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!

2021-03-18 21-03-15
Benjith Sam
 
MVP
Solution

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

UserImage.jpg
Renaud Diez

Benjith Sam wrote:

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

 

 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

2021-03-18 21-03-15
Benjith Sam
 
MVP

Renaud Diez 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

You are welcome, Renaud :)

I'm glad that it helped you :)


Regards,

Benjith Sam

2025-11-19 06-14-01
Miguel Verdasca
Champion

Renaud Diez wrote:

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,

 Did you try finished the action flow in a screen (Current Screen) ?

Cheers,

Miguel



 

UserImage.jpg
Renaud Diez

Miguel Verdasca wrote:

Renaud Diez wrote:

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,

 Did you try finished the action flow in a screen (Current Screen) ?

Cheers,

Miguel



 

 Hi Miguel,

I test this previously and it didn't work. On Reactive app. the DOM is not entirely refreshed.

Regards,

Renaud

 

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.