It is possible to override onRender method. It turned out that it is not
final.

        @Override
        protected void onRender(MarkupStream markupStream) {
                Application.get().getMarkupSettings().setStripWicketTags(true);
                try {
                        super.onRender(markupStream);
                } finally {
                        
Application.get().getMarkupSettings().setStripWicketTags(
                                        
MyApplication.STRIP_WICKET_TAGS_IN_DEVELOPMENT_MODE);
                }
        }

But I don't find appropriate method to override to let children render
wicket tags.

-- 
View this message in context: 
http://www.nabble.com/how-to-strip-wicket-tags-for-particular-component-tp24568122p24569807.html
Sent from the Wicket - User 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