Hi,
Is it possible to change the visibility of a component after page is
rendered?
Like when the page is loaded.

I tried with:

        @Override
        public void onAfterRender(){
                super.onAfterRender();
                this.myComponent.setVisible(false);
                this.add(this.myComponent);
        }

but i get an error:
org.apache.wicket.WicketRuntimeException: Cannot modify component hierarchy
after render phase has started (page version cant change then anymore)

any workaround?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Change-state-of-component-after-page-rendering-tp4670900.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to