[ANN] Flow Logix Tapestry Integration Library 1.0

2012-07-22 Thread Lenny Primak
After almost a year in the 0.x releases, I am proud to announce version 1.0 of the library. What is the Flow Logix Tapestry Library? It Integrates Tapestry with JEE/EJBs, GWT, Tynamo/Shiro Security and JEE Servers like Glassfish. What's new? Updated to the latest versions of Tapestry and Tapes

Re: Got5-JQuery: Any way to disable serving of minified .js files?

2012-07-22 Thread Lenny Primak
Not sure, Chris. Doesn't pass the 'smell test' either :) On Jul 23, 2012, at 12:48 AM, Chris Mylonas wrote: > Right..sorry :) > > Does setting the execution mode for jquery to DevelopmentMode sound like it > could be useful? > http://tapestry.apache.org/configuration.html#Configuration-Settin

Re: Got5-JQuery: Any way to disable serving of minified .js files?

2012-07-22 Thread Chris Mylonas
Right..sorry :) Does setting the execution mode for jquery to DevelopmentMode sound like it could be useful? http://tapestry.apache.org/configuration.html#Configuration-SettingExecutionModes CM On 23/07/2012, at 2:36 PM, Lenny Primak wrote: > That's just it. I don't want to comment it out.

Re: Got5-JQuery: Any way to disable serving of minified .js files?

2012-07-22 Thread Lenny Primak
That's just it. I don't want to comment it out. It works perfectly, and compresses all other .js files like its supposed to. It has trouble with JQuery stuff because it is already served minimized in production mode, which is exactly what I am trying to avoid. On Jul 23, 2012, at 12:34 AM,

Re: Got5-JQuery: Any way to disable serving of minified .js files?

2012-07-22 Thread Chris Mylonas
Hi Lenny, Try commenting out yuicompressor stuff in your pom HTH Chris On 23/07/2012, at 1:07 PM, Lenny Primak wrote: > I have a working tapestry-yuicompressor environment, which compresses .js > files. > In production mode, Got5-JQuery serves .min.js files, which blow up > YUIcompressor, > and

Got5-JQuery: Any way to disable serving of minified .js files?

2012-07-22 Thread Lenny Primak
I have a working tapestry-yuicompressor environment, which compresses .js files. In production mode, Got5-JQuery serves .min.js files, which blow up YUIcompressor, and causing 1000s or warnings. Is there any way to disable JQuery serving .min.js files? Thanks ---

AjaxFormLoop containing a component with @Import

2012-07-22 Thread Matías Blasi
Hi all! If the body of the AjaxFormLoop includes a component with @Import(library={...}) annotation (like datefield) the addRow event is fired but no update occurs in the client-side. My application is got5-jquery fully integrated. I don't know if this happens with no got5-jquery, but I think it

Re: Test if production or test mode..

2012-07-22 Thread Lance Java
You can use @Inject, @Value and @Symbol in tapestry services. @Property can only be used in pages and components, NOT services. The following should work in a service: @Inject @Symbol("tapestry.production-mode") private boolean productionMode; You could also do this: @Inject @Value("${tapestry.

Re: Tapestry thumbnail gallery

2012-07-22 Thread Lance Java
This isn't really what the grid was designed to do. The grid component is designed to show a table of data with column headings. CSS purists will often tell you that html tables should not be used for layout purposes and that you should use div's (or ul's) and CSS for displaying visual components i