Is it possible to use header contribution on the panel in ModalWindow?
I want to define some style for ModalWindow, but it doesn't work.

SomePanel.html is like:
<wicket:head>
<style type="text/css">
...some styles...
</style>
</wicket:head>
<wicket:panel>
...components using the styles...
</wicket:panel>

SomeDialog.java is like:
class SomeDialog extends ModalWindow {
    SomePanel _panel;
    SomeDialog(String id) {
        setContent(_panel = new SomePanel(getContentId()));
    }
}

Thanks in advance,
-- 
OHKAWA Tomohisa
[EMAIL PROTECTED]


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to