RE: quarky page injection... late allocation

2012-11-02 Thread Ken in Nashua
Thanks Howard... that just fixed my gallery... and 'it just works' now... : ) fun I made cursor and collectionType persistent using @Persist Everything works now... all my auto paging buttons and links from beginning of resultset to end. I never do anything unless I really need to... so

Re: quarky page injection... late allocation

2012-11-02 Thread Howard Lewis Ship
The fields are null because the values are often stored elsewhere; this is part of the logic that allows a single page instance to be actively shared across threads. Its much more likely that your application is at fault. For example, that "cursor" parameter may be bound to a property that is non-

RE: quarky page injection... late allocation

2012-11-01 Thread Ken in Nashua
Just another byproduct of things that occur and run amuck within the app at runtime An unexpected application exception has occurred.Parameter 'cursor' of component Home:gallerywidget is bound to null. This parameter is not allowed to be null. I guess I need to review all the code and see w

RE: quarky page injection... late allocation

2012-11-01 Thread Ken in Nashua
Well i have set all -Dtapestry.production-mode=true (beit true or false) in my eclipse debug configurations, pom.xml's, AppModule.JAVA and web.xml. The only place that I set this that actually had an effect on how the webapp runs PROD MODE Application 'app' (version 1.0-SNAPSHOT-1351774079811)

RE: quarky page injection... late allocation

2012-10-31 Thread Ken in Nashua
My pom is also set, found an execution mode variable but still no effect, the app runs... well in the beginning it hiccups not doign exactly what I want just trying to have my way with this debugger.. but not yet org.mortbay.jetty maven-jetty-plug

RE: quarky page injection... late allocation

2012-10-31 Thread Ken in Nashua
I also set this guy in the IDE jvm within eclipse under windows/preferences/java/Installed JRE's... -Dtapestry.production-mode=false and receiving same behavior Here is my environment of it means anything... but thanks Apache Maven 3.0.3 (r1075438; 2011-02-28 12:31:09-0500) Maven home: C:\DE

RE: quarky page injection... late allocation

2012-10-31 Thread Ken in Nashua
I added this to web.xml tapestry.production-mode false and has had no effect... parameter value of collectionType is still null

RE: quarky page injection... late allocation

2012-10-31 Thread Ken in Nashua
Thanks for trying Lance... I am trying to trace the runtime... I did add configuration.add(SymbolConstants.PRODUCTION_MODE, "false"); but it has had no effect I got no clue as to why... but in my component/widget Gallery.JAVA Gallery.JAVA @Parameter(required = true) private Cla

Re: quarky page injection... late allocation

2012-10-31 Thread Lance Java
Tapestry transforms page / component classes so that at runtime, the values are written/read from a thread local map and the fields are no longer used. In development mode, tapestry mirrors these values to the fields to make your life easier when debugging. I'm guessing that you are debugging a ta

RE: quarky page injection... late allocation

2012-10-30 Thread Ken in Nashua
Due to hurricane and outage for past two days... I am operating my hotspot app (virtual router) on my droid III for my internet connection. So it's a bit slow... like alot But is it possible there could be a race condition? I am wondering if the page injection process is contending with the l