Re: eventlink with multiple context parameters

2018-10-05 Thread Thiago H. de Paula Figueiredo
. [d.re...@googlemail.com.INVALID] > Sent: Tuesday, October 02, 2018 10:48 AM > To: users@tapestry.apache.org > Subject: eventlink with multiple context parameters > > Hi @all, > > I am confused about calling a java method with an eventlink and multiple > context

RE: eventlink with multiple context parameters

2018-10-03 Thread Ross, Cyndy
bject: eventlink with multiple context parameters Hi @all, I am confused about calling a java method with an eventlink and multiple context parameters: t:context="[account.get('test').userUuid, friend]" does not work, see below please. Following stuff is in my Java class: @Proper

Re: eventlink with multiple context parameters

2018-10-03 Thread Chris Poulsen
I think that you may be hit by some type erasure on the map. That said Tapestry also has some correctness issues with some generic constructs where it detects a too generic type in some complex cases. We are overriding the GenericsUtils class with an implementation that uses Guava's TypeToken for

eventlink with multiple context parameters

2018-10-02 Thread D. R.
Hi @all, I am confused about calling a java method with an eventlink and multiple context parameters: t:context="[account.get('test').userUuid, friend]" does not work, see below please. Following stuff is in my Java class: @Property(write = false) private final String friend = "friend"; publ