Re: inconsistency in property expression when using . for self reference

2010-06-18 Thread Joseph Pachod
Jeremy Thomerson wrote: Please attach to a JIRA [https://issues.apache.org/jira/browse/WICKET] so that it doesn't get lost. done : https://issues.apache.org/jira/browse/WICKET-2919 ++ - To unsubscribe, e-mail: users-unsubs

Re: inconsistency in property expression when using . for self reference

2010-06-17 Thread Jeremy Thomerson
Please attach to a JIRA [https://issues.apache.org/jira/browse/WICKET] so that it doesn't get lost. On Thu, Jun 17, 2010 at 4:13 PM, Joseph Pachod wrote: > hi > > Let's consider this class : > class Container { > String string = "foo"; > > List strings = Arrays.asList(new String

inconsistency in property expression when using . for self reference

2010-06-17 Thread Joseph Pachod
hi Let's consider this class : class Container { String string = "foo"; List strings = Arrays.asList(new String[]{"test"}); } This would work: new PropertyModel(container, ".string").getObject() => returns "foo" but this doesn't: new PropertyModel(container, ".strings[0]").g