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
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-
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 way to do this work? Or is there an
alternative?
I'm using Tapestry