I'm implementing the rich:modalPanel and would like the checkbox like in the example: http://livedemo.exadel.com/richfaces-demo/richfaces/modalPanel.jsf
The page source shows an image (/images/modal/close.png) to display as the close link in the header. How do I reference this image? Is this image part of the richfaces .jars? Or do I have to copy it to the server and reference it from there?
Thanks.
<rich:modalPanel id="mp" minHeight="200" minWidth="450"
 height="200" width="500" zindex="2000">
 <f:facet name="header">
 <h:outputText value="Modal Panel Title" />
 </f:facet>
 <f:facet name="controls">
 <h:graphicImage value="/images/modal/close.png" style="cursor:pointer" onclick="Richfaces.hideModalPanel('mp')" />
 </f:facet>
 <p>AnyYes,it is just an image of the demo application, but not a part of ModalPanel component. You can copy it if you want to reuse.