Hi there, I have an activatable page, in its onActivate(String param) method I save the param to a normal instance variable of the page class (no persistence!). How can any component embedded within this page access this variable?
the page class: //... private String param; public void onActivate(String param) { this.param = param; } public String getParam() {...} Thx in advance! Janos