Re: Switching between markup files for borders

2009-03-02 Thread Jeremy Thomerson
I would think you would be better off attaching this to a JIRA. On Mon, Mar 2, 2009 at 3:00 AM, Anton Veretennikov anton.veretenni...@gmail.com wrote: Quickstart is attached. Tested with last 1.4-SNAPSHOT. On Sun, Mar 1, 2009 at 12:29 AM, Anton Veretennikov anton.veretenni...@gmail.com

Re: Switching between markup files for borders

2009-03-02 Thread Anton Veretennikov
Done. I'm not sure although that I'm not doing something wrong. https://issues.apache.org/jira/browse/WICKET-2136 On Mon, Mar 2, 2009 at 9:54 PM, Jeremy Thomerson jer...@wickettraining.com wrote: I would think you would be better off attaching this to a JIRA. On Mon, Mar 2, 2009 at 3:00 AM,

Re: Switching between markup files for borders

2009-02-28 Thread Anton Veretennikov
Hmm. Strange things I see with image paths in my borders with variants. My page is mounted like: mountBookmarkablePage(/getFrame, OrderPaymentPage.class); So, when I reach my theme with: .../getFrame?theme=white - everything is alright. But asking it with: .../getFrame/theme/white - and my

Re: Switching between markup files for borders

2009-02-25 Thread Michael Sparer
http://cwiki.apache.org/WICKET/newuserguide.html#Newuserguide-LocaleandStyle regards Anton Veretennikov wrote: Hi! I have a problem with theme support for borders. I want to exchange real markup of border depending on theme name, for example: RoundedCornerBorder_black.html

Re: Switching between markup files for borders

2009-02-25 Thread Anton Veretennikov
Thank you very much! On Thu, Feb 26, 2009 at 12:19 AM, Michael Sparer michael.spa...@gmx.at wrote: http://cwiki.apache.org/WICKET/newuserguide.html#Newuserguide-LocaleandStyle regards Anton Veretennikov wrote: Hi! I have a problem with theme support for borders. I want to exchange

Re: Switching between markup files for borders

2009-02-25 Thread Jeremy Thomerson
Obviously I have nothing other than the name of your file to base this thought on, but I'll throw it out there anyway If the only difference between the two is color, just use localized / themed css files and use a single HTML file. This will save you a ton of code duplication over having

Re: Switching between markup files for borders

2009-02-25 Thread Anton Veretennikov
It will be better of course, Jeremy. My borders have differences not only in css but in images in table cells. Images are taken from other folders depending on theme name. Yes, I know, rounded corners can be made with pure css. But my war with browsers is endless. I thought about some variable

Re: Switching between markup files for borders

2009-02-25 Thread Jeremy Thomerson
Bummer - knew it couldn't be as easy as it looked. :) I don't suppose it's something you could do like this, then? Border.html td class=foo main_white.css TD.foo { background-image: (/url/whiteimages/bar.jpg); } main_black.css TD.foo { background-image: (/url/blackimages/bar.jpg); } As to

Re: Switching between markup files for borders

2009-02-25 Thread Igor Vaynberg
return new roundedcornerborder(...) { string getvariation() { return black; }}; -igor On Wed, Feb 25, 2009 at 11:45 PM, Jeremy Thomerson jer...@wickettraining.com wrote: Bummer - knew it couldn't be as easy as it looked.  :)  I don't suppose it's something you could do like this, then?

Re: Switching between markup files for borders

2009-02-25 Thread Anton Veretennikov
Igor, I did it already :) Jeremy suggests another approach - with no variations. On Thu, Feb 26, 2009 at 2:48 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: return new roundedcornerborder(...) { string getvariation() { return black; }}; -igor On Wed, Feb 25, 2009 at 11:45 PM, Jeremy