Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-23 Thread Al Maw
Scott Swank wrote:
> 2. have someone who understands css (i.e. not me) put lots of thingies
> in the above css file to override details of the css that ships with
> ModalWindow.  E.g.
> 
>   background-image: url();

Now, I know you claim not to understand CSS, but I feel compelled to 
point out that that should be:

 background-image: none;

HTH,

Al


-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-23 Thread Jonathan Locke


okay.  i don't understand CSS either.  ;-)  but thanks!


Scott Swank wrote:
> 
> 1. subclass ModalWindow, with following in the constructor.
> 
>   public YourModalWindow(String id)
>   {
>   super(id);
>   add(HeaderContributor.forCss("/style/cart_global.css"));
>   super.setCssClassName("w_vegas");
>   }
> 
> 2. have someone who understands css (i.e. not me) put lots of thingies
> in the above css file to override details of the css that ships with
> ModalWindow.  E.g.
> 
> div.wicket-modal div.w_vegas div.w_left,
> div.wicket-modal div.w_vegas div.w_right {
>   background-image: url();
>   _background-image: url();
> }
> 
> div.wicket-modal div.w_vegas div.w_top,
> div.wicket-modal div.w_vegas div.w_bottom,
> /*div.wicket-modal div.w_vegas div.w_topLeft,*/
> div.wicket-modal div.w_vegas div.w_topRight,
> div.wicket-modal div.w_vegas div.w_bottomRight,
> div.wicket-modal div.w_vegas div.w_bottomLeft
> {
>   background-image: url();
>   _background-image: url();
> }
> 
> div.wicket-modal div.w_vegas div.w_close  {
>   background: url(/mytrip/images/close_x.gif) no-repeat;
> }
> 
> Scott
> 
> 
> On 5/23/07, Jonathan Locke <[EMAIL PROTECTED]> wrote:
>>
>>
>> yeah, i'd be interested in this result too.
>>
>>
>> Scott Swank wrote:
>> >
>> > Agreed.  We've gone the "complicated CSS magic" route and it is a bit
>> > involved, but I can vouch for the fact that it's an option.  :)
>> >
>> > On 5/18/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
>> >> It is customizable, but you need a rather complicated CSS magic to do
>> >> it. Or, you can just override the images. Look at the images in the
>> >> modal window package to see how it works.
>> >>
>> >> -Matej
>> >>
>> >> On 5/18/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>> >> > you can try applying your own css, but i doubt it. the window is not
>> >> made to
>> >> > be too customizable atm.probably next major ver of wicket will
>> include
>> >> a
>> >> > rework of it. for now, you can integrate any of the zillion of
>> >> javascript
>> >> > libs out there that produce a simple modal pane.
>> >> >
>> >> > -igor
>> >> >
>> >> >
>> >> >
>> >> > On 5/17/07, Nikhil Gahlot <[EMAIL PROTECTED]> wrote:
>> >> > >
>> >> > > Hi,
>> >> > >
>> >> > > I am using ModalWindow for my login screen. In that I have used
>> panel
>> >> as
>> >> > its
>> >> > > content. Now I want to hide everything (including title bar, close
>> >> link,
>> >> > > etc) on Modal Window except the rich panel I am using. In other
>> >> words, is
>> >> > > there a way I can remove modal window`s title bar with close link
>> and
>> >> > > borders(left, right and bottom) keeping only body active that
>> houses
>> >> my
>> >> > > login panel?
>> >> > >
>> >> > > Thanks
>> >> > > Nikhil
>> >> > > --
>> >> > > View this message in context:
>> >> >
>> >>
>> http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
>> >> > > Sent from the Wicket - User mailing list archive at Nabble.com.
>> >> > >
>> >> > >
>> >> > >
>> >> >
>> >>
>> -
>> >> > > 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
>> >> > > Wicket-user@lists.sourceforge.net
>> >> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> > >
>> >> >
>> >> >
>> >> >
>> >>
>> -
>> >> > 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
>> >> > Wicket-user@lists.sourceforge.net
>> >> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >
>> >> >
>> >>
>> >>
>> -
>> >> 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
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >
>> >
>> > --
>> > Scott Swank
>> > reformed mathematician
>> >
>> >
>> -
>> > This SF.net email is sponsored by DB2 Express
>> > Download DB2 Express C - the FREE version of DB2 express and take
>> > control 

Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-23 Thread Scott Swank
1. subclass ModalWindow, with following in the constructor.

public YourModalWindow(String id)
{
super(id);
add(HeaderContributor.forCss("/style/cart_global.css"));
super.setCssClassName("w_vegas");
}

2. have someone who understands css (i.e. not me) put lots of thingies
in the above css file to override details of the css that ships with
ModalWindow.  E.g.

div.wicket-modal div.w_vegas div.w_left,
div.wicket-modal div.w_vegas div.w_right {
background-image: url();
_background-image: url();
}

div.wicket-modal div.w_vegas div.w_top,
div.wicket-modal div.w_vegas div.w_bottom,
/*div.wicket-modal div.w_vegas div.w_topLeft,*/
div.wicket-modal div.w_vegas div.w_topRight,
div.wicket-modal div.w_vegas div.w_bottomRight,
div.wicket-modal div.w_vegas div.w_bottomLeft
{
background-image: url();
_background-image: url();
}

div.wicket-modal div.w_vegas div.w_close{
background: url(/mytrip/images/close_x.gif) no-repeat;
}

Scott


On 5/23/07, Jonathan Locke <[EMAIL PROTECTED]> wrote:
>
>
> yeah, i'd be interested in this result too.
>
>
> Scott Swank wrote:
> >
> > Agreed.  We've gone the "complicated CSS magic" route and it is a bit
> > involved, but I can vouch for the fact that it's an option.  :)
> >
> > On 5/18/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
> >> It is customizable, but you need a rather complicated CSS magic to do
> >> it. Or, you can just override the images. Look at the images in the
> >> modal window package to see how it works.
> >>
> >> -Matej
> >>
> >> On 5/18/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> >> > you can try applying your own css, but i doubt it. the window is not
> >> made to
> >> > be too customizable atm.probably next major ver of wicket will include
> >> a
> >> > rework of it. for now, you can integrate any of the zillion of
> >> javascript
> >> > libs out there that produce a simple modal pane.
> >> >
> >> > -igor
> >> >
> >> >
> >> >
> >> > On 5/17/07, Nikhil Gahlot <[EMAIL PROTECTED]> wrote:
> >> > >
> >> > > Hi,
> >> > >
> >> > > I am using ModalWindow for my login screen. In that I have used panel
> >> as
> >> > its
> >> > > content. Now I want to hide everything (including title bar, close
> >> link,
> >> > > etc) on Modal Window except the rich panel I am using. In other
> >> words, is
> >> > > there a way I can remove modal window`s title bar with close link and
> >> > > borders(left, right and bottom) keeping only body active that houses
> >> my
> >> > > login panel?
> >> > >
> >> > > Thanks
> >> > > Nikhil
> >> > > --
> >> > > View this message in context:
> >> >
> >> http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
> >> > > Sent from the Wicket - User mailing list archive at Nabble.com.
> >> > >
> >> > >
> >> > >
> >> >
> >> -
> >> > > 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
> >> > > Wicket-user@lists.sourceforge.net
> >> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >> > >
> >> >
> >> >
> >> >
> >> -
> >> > 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
> >> > Wicket-user@lists.sourceforge.net
> >> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >> >
> >> >
> >>
> >> -
> >> 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
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>
> >
> >
> > --
> > Scott Swank
> > reformed mathematician
> >
> > -
> > 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
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinf

Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-23 Thread Jonathan Locke


yeah, i'd be interested in this result too.


Scott Swank wrote:
> 
> Agreed.  We've gone the "complicated CSS magic" route and it is a bit
> involved, but I can vouch for the fact that it's an option.  :)
> 
> On 5/18/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
>> It is customizable, but you need a rather complicated CSS magic to do
>> it. Or, you can just override the images. Look at the images in the
>> modal window package to see how it works.
>>
>> -Matej
>>
>> On 5/18/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>> > you can try applying your own css, but i doubt it. the window is not
>> made to
>> > be too customizable atm.probably next major ver of wicket will include
>> a
>> > rework of it. for now, you can integrate any of the zillion of
>> javascript
>> > libs out there that produce a simple modal pane.
>> >
>> > -igor
>> >
>> >
>> >
>> > On 5/17/07, Nikhil Gahlot <[EMAIL PROTECTED]> wrote:
>> > >
>> > > Hi,
>> > >
>> > > I am using ModalWindow for my login screen. In that I have used panel
>> as
>> > its
>> > > content. Now I want to hide everything (including title bar, close
>> link,
>> > > etc) on Modal Window except the rich panel I am using. In other
>> words, is
>> > > there a way I can remove modal window`s title bar with close link and
>> > > borders(left, right and bottom) keeping only body active that houses
>> my
>> > > login panel?
>> > >
>> > > Thanks
>> > > Nikhil
>> > > --
>> > > View this message in context:
>> >
>> http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
>> > > Sent from the Wicket - User mailing list archive at Nabble.com.
>> > >
>> > >
>> > >
>> >
>> -
>> > > 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
>> > > Wicket-user@lists.sourceforge.net
>> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> > >
>> >
>> >
>> >
>> -
>> > 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
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>> >
>>
>> -
>> 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
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> 
> -- 
> Scott Swank
> reformed mathematician
> 
> -
> 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
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10768003
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-23 Thread Nikhil Gahlot

Thanks for the reply. Can you please share your experience on the
customization magic with us. Some pointer would be of great help.
 
Nikhil



Scott Swank wrote:
> 
> Agreed.  We've gone the "complicated CSS magic" route and it is a bit
> involved, but I can vouch for the fact that it's an option.  :)
> 
> On 5/18/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
>> It is customizable, but you need a rather complicated CSS magic to do
>> it. Or, you can just override the images. Look at the images in the
>> modal window package to see how it works.
>>
>> -Matej
>>
>> On 5/18/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>> > you can try applying your own css, but i doubt it. the window is not
>> made to
>> > be too customizable atm.probably next major ver of wicket will include
>> a
>> > rework of it. for now, you can integrate any of the zillion of
>> javascript
>> > libs out there that produce a simple modal pane.
>> >
>> > -igor
>> >
>> >
>> >
>> > On 5/17/07, Nikhil Gahlot <[EMAIL PROTECTED]> wrote:
>> > >
>> > > Hi,
>> > >
>> > > I am using ModalWindow for my login screen. In that I have used panel
>> as
>> > its
>> > > content. Now I want to hide everything (including title bar, close
>> link,
>> > > etc) on Modal Window except the rich panel I am using. In other
>> words, is
>> > > there a way I can remove modal window`s title bar with close link and
>> > > borders(left, right and bottom) keeping only body active that houses
>> my
>> > > login panel?
>> > >
>> > > Thanks
>> > > Nikhil
>> > > --
>> > > View this message in context:
>> >
>> http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
>> > > Sent from the Wicket - User mailing list archive at Nabble.com.
>> > >
>> > >
>> > >
>> >
>> -
>> > > 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
>> > > Wicket-user@lists.sourceforge.net
>> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> > >
>> >
>> >
>> >
>> -
>> > 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
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>> >
>>
>> -
>> 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
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> 
> -- 
> Scott Swank
> reformed mathematician
> 
> -
> 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
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10758593
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-18 Thread Scott Swank
Agreed.  We've gone the "complicated CSS magic" route and it is a bit
involved, but I can vouch for the fact that it's an option.  :)

On 5/18/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
> It is customizable, but you need a rather complicated CSS magic to do
> it. Or, you can just override the images. Look at the images in the
> modal window package to see how it works.
>
> -Matej
>
> On 5/18/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> > you can try applying your own css, but i doubt it. the window is not made to
> > be too customizable atm.probably next major ver of wicket will include a
> > rework of it. for now, you can integrate any of the zillion of javascript
> > libs out there that produce a simple modal pane.
> >
> > -igor
> >
> >
> >
> > On 5/17/07, Nikhil Gahlot <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi,
> > >
> > > I am using ModalWindow for my login screen. In that I have used panel as
> > its
> > > content. Now I want to hide everything (including title bar, close link,
> > > etc) on Modal Window except the rich panel I am using. In other words, is
> > > there a way I can remove modal window`s title bar with close link and
> > > borders(left, right and bottom) keeping only body active that houses my
> > > login panel?
> > >
> > > Thanks
> > > Nikhil
> > > --
> > > View this message in context:
> > http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
> > > Sent from the Wicket - User mailing list archive at Nabble.com.
> > >
> > >
> > >
> > -
> > > 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
> > > Wicket-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> >
> >
> > -
> > 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
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>
> -
> 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
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-- 
Scott Swank
reformed mathematician

-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-18 Thread Matej Knopp
It is customizable, but you need a rather complicated CSS magic to do
it. Or, you can just override the images. Look at the images in the
modal window package to see how it works.

-Matej

On 5/18/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> you can try applying your own css, but i doubt it. the window is not made to
> be too customizable atm.probably next major ver of wicket will include a
> rework of it. for now, you can integrate any of the zillion of javascript
> libs out there that produce a simple modal pane.
>
> -igor
>
>
>
> On 5/17/07, Nikhil Gahlot <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > I am using ModalWindow for my login screen. In that I have used panel as
> its
> > content. Now I want to hide everything (including title bar, close link,
> > etc) on Modal Window except the rich panel I am using. In other words, is
> > there a way I can remove modal window`s title bar with close link and
> > borders(left, right and bottom) keeping only body active that houses my
> > login panel?
> >
> > Thanks
> > Nikhil
> > --
> > View this message in context:
> http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
> > Sent from the Wicket - User mailing list archive at Nabble.com.
> >
> >
> >
> -
> > 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
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
> -
> 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
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] how to customize Modal Window`s appearance

2007-05-17 Thread Igor Vaynberg

you can try applying your own css, but i doubt it. the window is not made to
be too customizable atm.probably next major ver of wicket will include a
rework of it. for now, you can integrate any of the zillion of javascript
libs out there that produce a simple modal pane.

-igor


On 5/17/07, Nikhil Gahlot <[EMAIL PROTECTED]> wrote:



Hi,

I am using ModalWindow for my login screen. In that I have used panel as
its
content. Now I want to hide everything (including title bar, close link,
etc) on Modal Window except the rich panel I am using. In other words, is
there a way I can remove modal window`s title bar with close link and
borders(left, right and bottom) keeping only body active that houses my
login panel?

Thanks
Nikhil
--
View this message in context:
http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] how to customize Modal Window`s appearance

2007-05-17 Thread Nikhil Gahlot

Hi,

I am using ModalWindow for my login screen. In that I have used panel as its
content. Now I want to hide everything (including title bar, close link,
etc) on Modal Window except the rich panel I am using. In other words, is
there a way I can remove modal window`s title bar with close link and
borders(left, right and bottom) keeping only body active that houses my
login panel?

Thanks
Nikhil
-- 
View this message in context: 
http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10676785
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user