Hi Andras,
For the mentioned use-case, one of the solution that would be, is to forcefully re-load the current screen using JavaScript code
Steps to follow:
1) Map the Group dropdown widget variable property with a client variable i.e. store the Group dropdown selection in a client variable for global access
2) Within the Group dropdown OnChange handler action flow, define a JS node with the below mentioned JS code snippet
window.location.reload(); // to forcefully re-load the current screen
3) Refer/use the same client variable value in every screen aggregate's filter condition, wherever the data is to filtered on the basis of selected Group value
4) In case, if you want to get the current screen url, you can refer the location object href property using the JS node
location.href; // to get the current screen url
- For the mentioned use-case, the other solution which I could think of is to use the block event trigger/handling mechanism
Hope this helps you!
Kind regards,
Benjith Sam