RE: Bean Editor class cast issue method access issue

2012-12-11 Thread Ken in Nashua
Hi Jens, I found out what the "mb:bean" notation is... its just a custom binding In tapestry we can specify such notations "prop:myProperty" In this case... the framework I am using TYNAMO implements a new binding called ModelBinding and it gets facilitated by a ModelBindingFactory. package o

RE: Bean Editor class cast issue method access issue

2012-12-11 Thread Ken in Nashua
Thanks Jens, It appears the default edit page for the framework operates an object. Subsequent customizations means to cut/paste new edit page for the pojo in question... CoachEdit.tml default being Edit.tml I think I will go from there and see what gives. - cheers Ken

Re: Bean Editor class cast issue method access issue

2012-12-11 Thread Thiago H de Paula Figueiredo
On Mon, 10 Dec 2012 22:22:47 -0200, Ken in Nashua wrote: Thanks Thiago... Hi, Ken! yes Person is a superclass to Coach the mb: binding... well the tynamo guys did that. I had hoped one of them might comment on it... Kalle or Alejandro it woul be nice... because I got no clue what it is

RE: Bean Editor class cast issue method access issue

2012-12-11 Thread Ken in Nashua
Thanks Jens... I am certain its a coach. But I could be wrong... I am not finding enough docs on their mixin and its usage other than the source module itself. I have a gallery of coaches... displayed with their photo property. But each coach is a pagelink to an edit page. The idea being... i

Re: Bean Editor class cast issue method access issue

2012-12-10 Thread mailingl...@j-b-s.de
Hi Ken, I really wonder what happens to your coach instance. Are you sure its a coach? As I see java.lang.Object as class name I doubt it is still your coach or ever was. Even if you assign a coach to an object variable it remains coach. Can you check/debug what happens to your instance? Jens

RE: Bean Editor class cast issue method access issue

2012-12-10 Thread Ken in Nashua
I still have yet to override a simple bean property for the beaneditor cant seem to get access or cast context to the actual bean and its superclass inherited methods ... I am actually trying to customize one of their CRUD pages... specifically Edit There is a photo property for person... and I

RE: Bean Editor class cast issue method access issue

2012-12-10 Thread Ken in Nashua
The mb:bean notation is used across all tynamo Edit and Add tml pages for CRUD purposes But I am still trying to figure it out. I guessed it can be ignored and stands for managedbean ? Is it something that affects the mixin? Its guesswork

RE: Bean Editor class cast issue method access issue

2012-12-10 Thread Ken in Nashua
Thanks Thiago... yes Person is a superclass to Coach the mb: binding... well the tynamo guys did that. I had hoped one of them might comment on it... Kalle or Alejandro it woul be nice... because I got no clue what it is either. Its their standard Edit.tml page component for editing pojos usi

Re: Bean Editor class cast issue method access issue

2012-12-10 Thread Thiago H de Paula Figueiredo
On Mon, 10 Dec 2012 04:56:47 -0200, Ken in Nashua wrote: Hi Folks, Hi! I have a taxonomy... PERSON /\ | | COACH person has a method firstName Does this mean Coach is a subclass of Person? But in my tml file I am using the following code... t:mixins="t

Bean Editor class cast issue method access issue

2012-12-09 Thread Ken in Nashua
Hi Folks, I have a taxonomy... PERSON /\ | | COACH person has a method firstName But in my tml file I am using the following code... The Description