RE: contrib:Table has source and columns specs but does not work

2006-03-08 Thread Apache
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

RE: contrib:Table has source and columns specs but does not work

2006-03-07 Thread Apache
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

Re: contrib:Table has source and columns specs but does not work

2006-03-01 Thread Daniele Dellafiore
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

Re: contrib:Table has source and columns specs but does not work

2006-02-28 Thread Daniel Lydiard
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

Re: contrib:Table has source and columns specs but does not work

2006-02-24 Thread Andreas Andreou
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