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.

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

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

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));

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

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

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.