Re: T4: Create a combo box without static binding

2007-10-04 Thread Joshua Jackson
Thanks Martino, I've updated it with: On 10/4/07, Martino Piccinato <[EMAIL PROTECTED]> wrote: > If you write > > > > ognl correctly resolve "false" as the literal "false" value in java. > > You have to write something like: > > > > and then implemente the "selected" property in your page/comp

Re: T4: Create a combo box without static binding

2007-10-04 Thread Martino Piccinato
If you write ognl correctly resolve "false" as the literal "false" value in java. You have to write something like: and then implemente the "selected" property in your page/component, e.g.: public abstract boolean getSelected(); public abstract void setSelected(boolean selected); On 10/4/

T4: Create a combo box without static binding

2007-10-04 Thread Joshua Jackson
Dear all, Today I got an error regarding binding in Tapestry 4.1.3 as such: Binding with value false (StaticBinding[false]) may not be updated. 36 37 38 39 The problem is on line 37. How do I create an unstatic binding for property selected? Why can't I hardcode this? Thanks in advance. --