Re: Intermittent problems with JSONObjectEventResultProcessor and Response

2014-02-22 Thread Lance Java
Strange, do you have any custom request filters running? Any custom threads? Failing that, can you use the dev tools in your browser to inspect the requests / response traffic? Anything strange?

Re: Tapestry IOC: Multiple bindings for same interface

2014-02-22 Thread Lance Java
I think the "tapestry way" of doing what you want is to make multiple contributions to a single service and inject the single service.

Re: Tapestry IOC: Multiple bindings for same interface

2014-02-22 Thread Muhammad Gelbana
He still needs to manually contribute the interface-implementing services to this single service. Still, it sounds like the closes solution. *-* *Muhammad Gelbana* http://www.linkedin.com/in/mgelbana On Sat, Feb 22, 2014 at 11:18 AM, Lance Java wrote: > I think the "tapestry

Zone and Event Link ID refresh

2014-02-22 Thread Boris Horvat
Hi everyone, I have a code like this ${currentTaskGroup} (there is more html in between but I dont think that is important). When I click on the link the first one works fine. However every subsequent click

Re: How to pass a javascript function in tapestry mixin

2014-02-22 Thread Boris Horvat
Sadly I did posted it Communication with the server failed: null Ajax failure: Status 200 for #{request.url}: null Communication with the server failed: null Not much more info then this. In the console I can see 1. Communication with the server failed: null t5-console-jquery.js:64

Re: How to pass a javascript function in tapestry mixin

2014-02-22 Thread Boris Horvat
In case it helps the method is defined like this function showUploadProgress() { var showUploadProgress = function(id, fileName) { alert(123) $('.photo').removeClass('photo').addClass('photo-progress-reveal'); } return showUploadProgress; } Cheers On Sat, Feb 22, 201