Re: tapestry.init (js) not being called in ie

2010-09-29 Thread Paul Stanton
i figured it out... !! in IE, if you change the |innerHTML| of any element during page load, all "deferred" scripts are loaded prematurely... one of my inline javascript procedures was changing the |innerHTML| of an element during page load and delaying this script resolved the issu

Re: tapestry.init (js) not being called in ie

2010-09-29 Thread Paul Stanton
ie8 tapestry 5.1.0.5 pretty sure it's not tapestry's fault, something is causing ie8 to load deferred scripts before the page is finished loading... but what On 30/09/2010 11:29 AM, Howard Lewis Ship wrote: I haven't seen this; what version of IE are you using? What libraries / JS? Wh

[Announce] RecurTrack.com Released

2010-09-29 Thread Ben Dotte
Hi Everyone, I'm pleased to announce the release of a new site built with Tapestry 5.2: RecurTrack.com This is a free budgeting and household tracking tool I've been building for the past 10 months. We did some fun things with zones and Howard's tapx-yui library to create a nice responsive UI and

Re: tapestry.init (js) not being called in ie

2010-09-29 Thread Howard Lewis Ship
I haven't seen this; what version of IE are you using? What libraries / JS? Which version of Tapestry? http://www.catb.org/esr/faqs/smart-questions.html On Wed, Sep 29, 2010 at 6:03 PM, Paul Stanton wrote: >  Hi all, > > I'm having a strange problem. It's only started happening recently howeve

tapestry.init (js) not being called in ie

2010-09-29 Thread Paul Stanton
Hi all, I'm having a strange problem. It's only started happening recently however I can't for the life of me figure out what is causing it. the short story is that Tapestry.init is never being called. the long story is that prototype.fireContentLoadedEvent is being called prematurely, ie b

[5.1.0.5] Delete Confirmation Mixin

2010-09-29 Thread Rich M
Hi, I found this thread http://tapestry-users.832.n2.nabble.com/Confirm-mixin-won-t-cancel-when-in-zone-td5048950.html#a5048950 but it's not exactly what I'm trying to do because it's for eventlinks. I'm a bit stuck getting the pieces of a custom mixin I'm trying to write to work, and my tale

Re: count active users

2010-09-29 Thread LLTYK
Here's a different way. Implement HttpSessionListener (and put it in web.xml) and do this: public void sessionCreated(HttpSessionEvent event) { Set allHttpSessions = event.getSession().getServletContext().getAttribute("allSessions"); if (allHttpSessions == null) { allHttpSession

Custom coercion from String to Long

2010-09-29 Thread Radek Terber
Hi all I need the cutom coercion from String to Long, which will translate empty strings to null Long value. I tried add contribution to my AppModule, but with no success - coercion to Long is still processed by old manner. Is there any way to do it? Thans. Here is part of my AppModule: ===