Re: re [t5]: testing for null number

2008-07-24 Thread Padawn
General test construct: .java public boolean myTest() { return (thingie != null); } .tml or photos-4 wrote: > >> I notice that t:if coerces number objects (Long, Integer, etc) and >> tests for zero or non-zero. I want to test for null or not null using a >> number data > t

Re: void onActivate(String ,String)

2008-07-24 Thread Padawn
Event bubbling? In 5.0.13 I have a page with two onActivate()'s, both of which will get invoked. .java 1. void onActivate(Object[] projectContext) {..} // pagelink handler with a context of two Long ids 2. void onActivate(Long taskId) { ... } // pagelink handler with standard

Re: T5.0.14-SNAPSHOT: strange behavior Dispatcher when using a Session

2008-07-24 Thread Padawn
Since it's just my intuition speaking, I may be off-base, but...this sounds like the beloved Hibernate Proxy and/or Cache issue, both of which SnoopyDance all-over gray concurrency areas. Try substituting the query code for a, literally, straight get(persistentClass, databaseId); call and see if

Re: T5.0.14-SNAPSHOT: strange behavior Dispatcher when using a Session

2008-07-24 Thread Padawn
Chris Lewis-5 wrote: > > Do I need to do any manual hibernate cleanup? I thought this was handled > by a background > event but I'm at a bit of a loss... > Actually, Uber T5 folks, this raises a good question: when using an ORM framework, are there specific gotcha's to be sensitive to when acc