I managed to fix it by storing the List in the session (my Visitor class).
getVisitor().setList( my List);
But I dont think I need to do that, I tried in my table definition I had
and it still didnt work?!? Any clue?
m2f
Sent from www.TapestryF
I have the exact some problem here...new bug maybe?
m2f
Sent from www.TapestryForums.com
Read this topic online here: <>
http://www.tapestryforums.com/viewtopic.php?p=14490#14490
m2f
Daniel Lydiard wrote:
Let Tapestry handle the getter/setter and use @Persist for the table model.
so
@Persist
public abstract List getProfiles();
public abstract void setProfiles(List profiles);
Then init setProfiles() in your pageBeginRender. Pretty sure you need
to do that for the column mo
Let Tapestry handle the getter/setter and use @Persist for the table model.
so
@Persist
public abstract List getProfiles();
public abstract void setProfiles(List profiles);
Then init setProfiles() in your pageBeginRender. Pretty sure you need to do
that for the column model too.
- Origin
Either your source or your columns parameter is null !
Apache wrote:
>I am unable to make a @contrib:Table to run.
>I have solved a lot of problems, following a tutorial for TP3 and adapting it
>to TP4 that has no Table doc. Anyway, at the end I have a single page where:
>
>.html is:
>
>
>
>.p