Dynamically changing CSS style attribute

2009-02-24 Thread Seven Corners
string? Don't want to do that either. Is there some way just to tweak a single CSS attribute? Thanks. -- View this message in context: http://www.nabble.com/Dynamically-changing-CSS-style-attribute-tp22187801p22187801.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Martin Makundi
://www.nabble.com/Dynamically-changing-CSS-style-attribute-tp22187801p22187801.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Martijn Reuvers
this message in context: http://www.nabble.com/Dynamically-changing-CSS-style-attribute-tp22187801p22187801.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Sven Meier
Why not keep the fixed settings in a style class and just update the style attribute with the current value (utilizing an AttributeModifier)? .Needle { z-index: 1; width: 2px; ... } span wicket:id=needle class=Needle style=left: 20%;/ Seven Corners schrieb: I have a control with a needle

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Thomas Mäder
every minute), the style attribute would become a really long string? Don't want to do that either. Is there some way just to tweak a single CSS attribute? Thanks. -- View this message in context: http://www.nabble.com/Dynamically-changing-CSS-style-attribute-tp22187801p22187801

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Seven Corners
. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- View this message in context: http://www.nabble.com/Dynamically-changing-CSS-style-attribute-tp22187801p22189563.html Sent from the Wicket - User mailing list archive

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Thomas Mäder
://www.nabble.com/Dynamically-changing-CSS-style-attribute-tp22187801p22189563.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands

Re: Dynamically changing CSS

2007-10-31 Thread Cristi Manole
works perfectly. tks a mill. On 10/31/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Wed, 31 Oct 2007, Cristi Manole wrote: Tks a lot for your reply, but how do I do get wicket to change the style color of that speciffic row, exactly? that part I don't know... :( Something like final

Dynamically changing CSS

2007-10-30 Thread Cristi Manole
Hello, I have a checkbox in an Ajax table (wrote by Igor). On one column i add a panel which contains a checkbox and a link. When the user selects the checkbox I would like that specific table row to be displayed with a different background color. How am I to do that? I didn't manage to

Re: Dynamically changing CSS

2007-10-30 Thread Jon Laidler
/Dynamically-changing-CSS-tf4721192.html#a13498438 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Dynamically changing CSS

2007-10-30 Thread Cristi Manole
: Dynamically changing CSS You could use CSS. Set the class for the table row to be highlighted (eg ..tr class=trcolor), add a style to the page to set the color of the table row class (eg .trcolor {color: red} ). Then get wicket to change the style color through CSS when the checkbox is selected

Re: Dynamically changing CSS

2007-10-30 Thread Timo Rantalaiho
On Wed, 31 Oct 2007, Cristi Manole wrote: Tks a lot for your reply, but how do I do get wicket to change the style color of that speciffic row, exactly? that part I don't know... :( Something like final Component row = ... row.add(new AttribubuteModifier(class, true, new