I want to add an image icon inline the title of the panel like below
<http://apache-wicket.1842946.n4.nabble.com/file/t375760/ADA_mockup.png> 

the panel HTML is using the tag <wicket:panel> to render the panel class

HTML :
<div style="margin-left: auto; margin-right: auto;">
                        <wicket:panel>
                            ..............(verbiages) 
        </wicket:panel>
                </div>


then the corresponding class extends the Panel :

public class AmericansWithDisabilitiesPanel extends Panel {
        private static final long serialVersionUID = 1L;
        public AmericansWithDisabilitiesPanel(String pWicketId) {
                super(pWicketId);
        }
}


Is there any way to add the image to the panel title?


--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

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

Reply via email to