Hi All,
I have two interface, A and B. When a button in interface A is clicked all the components in B should be refreshed. Is it possible to refresh all the components in interface B without passing parameters in all components in interface B?(I am passing the refresh variable from A to B, but not from B to components in B)
Discussion posts and replies are publicly visible
When calling your interface B in Parent Interface (Interface A), you will have to pass at least one variable based on which the data in interface B will be refreshed.
Make sure to use refreshOnVarChange in Interface B.
Thanks