Re: Dynamically changing CSS style attribute

2009-02-24 Thread Thomas Mäder
"left" to > >> the > >> end of the "style" attribute, so that over time (the timer goes off > every > >> minute), the "style" attribute would become a really long string? Don't > >> want to do that either. > >> > &

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Seven Corners
ak a single CSS attribute? >> >> Thanks. >> > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > &

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Thomas Mäder
dn't that just add a "left" to > the > >> end of the "style" attribute, so that over time (the timer goes off > every > >> minute), the "style" attribute would become a really long string? Don't > >> want to do that either. > >>

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; ... } Seven Corners schrieb: I have a control with a needle that moves. The needle's value is continually changi

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Seven Corners
the JavaScript. It looks like I'll have to parse and tweak the style string and then set that attribute. -- View this message in context: http://www.nabble.com/Dynamically-changing-CSS-style-attribute-tp22187801p22188808.html Sent from the Wicket - User mailing list a

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Martijn Reuvers
quot;style" attribute, so that over time (the timer goes off 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? >> >> Than

Re: Dynamically changing CSS style attribute

2009-02-24 Thread Martin Makundi
e 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.html > Sen

Dynamically changing CSS style attribute

2009-02-24 Thread Seven Corners
f 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-tp22187801p2

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

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 AbstractRea

Re: Dynamically changing CSS

2007-10-30 Thread Cristi Manole
iew this message in context: http://www.nabble.com/Dynamically-changing-CSS-tf4721192.html#a13498438 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Dynamically changing CSS

2007-10-30 Thread Jon Laidler
) > > Thanks in advance. > > -- View this message in context: http://www.nabble.com/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]

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 underst