How do I update the page without f5 when I press the button in hybris?
button is in listview action, not in editorarea.
Asked
Active
Viewed 95 times
0

Tugba Alparslan
- 145
- 6
-
modelservice.refresh() alone was not enough – Tugba Alparslan Feb 09 '23 at 15:46
-
1As said in the tag description, please "DO NOT USE THIS TAG as it's ambiguous..." The reason is the same as the tag Microsoft which does not exist, the tag SAP exists only for historical reason. – Sandra Rossi Feb 09 '23 at 21:45
-
thanks but that's not really the problem right now. @SandraRossi – Tugba Alparslan Feb 10 '23 at 06:00
1 Answers
0
You can use this java code inside your action class renderer :
Clients.evalJavaScript("location.reload();");
Hope this helps

Benkerroum Mohamed
- 1,867
- 3
- 13
- 19
-
thank you this method refresh the page with f5 but I want to have listview or table refresh without page f5. – Tugba Alparslan Feb 10 '23 at 14:07
-
-