My idea is a superclass page using Generics:
In the template:
Each subclass has a entity type and my only concern would be to override the
method getGridEntityPropertyNames() when I wanted to filter the properties
to display in the grid.
I wanted to avoid override getFirstPropertyValue() in sub
On Mon, 12 Dec 2011 12:33:43 -0200, Marcelo da Silva
wrote:
I am trying to pass a property to the name attribute of t: parameter,
like
this:
...
-
public String getFirstPropertyName() {
return model.getPropertyNames().get(0) + "Cell";
}
But this is not working, is there any
Detail: the is part of a Grid. The columns are determined by a
BeanModel and may vary:
model.include (getFieldNamesArray());
My goal is to build a link in the first column, regardless of which is.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/parameterized-t-parameter-