Re: How to use a property of render variables

2015-03-18 Thread Thiago H de Paula Figueiredo
Render variables (a.k.a the var: binding) doesn't support properties. Period. Instead, create a property in the corresponding Java class for being your loop variable. The var: binding is only supposed to be used in very specific scenarios in which the looped values are primitives, strings o

Fwd: How to use a property of render variables

2015-03-18 Thread Dominik Dorn
Hi, I couldn't find information on how to access properties of render variables. I have the following test case: Suppose we have two classes: class App { private String name; /* + getters/setters */ } class Node { private List apps; private String name; /* + getters/setters */ } in my page I

How to use a property of render variables

2015-03-18 Thread Dominik Dorn
Hi, I couldn't find information on how to access properties of render variables. I have the following test case: Suppose we have two classes: class App { private String name; /* + getters/setters */ } class Node { private List apps; private String name; /* + getters/setters */ } in my page I