Re: [Wicket-user] Changing attribute on non-component tag

2006-10-06 Thread Arseny
Thank you! > ... > > add(new WebMarkupContainer("frameset").add(new > AttributeModifier("cols", new ReadOnlyModel() { ... }, true))); > > Martijn > > On 10/6/06, Arseny <[EMAIL PROTECTED]> wrote: > >> Hello! >> I am still migrating my mind from Struts into Wicket:) >> I have a newbie question: >

Re: [Wicket-user] Changing attribute on non-component tag

2006-10-06 Thread Martijn Dashorst
... add(new WebMarkupContainer("frameset").add(new AttributeModifier("cols", new ReadOnlyModel() { ... }, true))); Martijn On 10/6/06, Arseny <[EMAIL PROTECTED]> wrote: > Hello! > I am still migrating my mind from Struts into Wicket:) > I have a newbie question: > In my component markup I need t

[Wicket-user] Changing attribute on non-component tag

2006-10-06 Thread Arseny
Hello! I am still migrating my mind from Struts into Wicket:) I have a newbie question: In my component markup I need to dynamically change frames width: ... ... In JSP I would write something like: .. What is a Wicket approach for this task? Thank you! P.S. By the way, may be there is a Sp