Hi, 

Is it possible not to render a component for security issues. 

I know i can use IAuthorizationStrategy for this but i want to to it manually

I don't need just setVisible(false), i really need not to render that 
component. 

I don't know which method to override. Below code gives error.

TextField nameField = new TextField<String>("name", new 
PropertyModel<String>(this,
                "name")) {
            @Override
            protected void onRender(MarkupStream markupStream) {
                             
            }
        };

Any way ? 

Thanks.

Reply via email to