loading localisation property maps dynamically

2014-04-24 Thread Aristedes Maniatis
Tapestry makes it easy to load l10n properties from the classpath, starting from WEB-INF/app.properties. In our situation however we already override tapestry template (*.tml) files per page request (to customise multiple sites driven by a single application). I'd like to do the same with locali

Re: Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-24 Thread Jon Williams
Still broken in the beta5. Pretty sure this is a bug, i'll make a JIRA issue.

Is it possible to move the mentioned JS files at the bottom of the page

2014-04-24 Thread Lance Java
You can contribute a MarkupRendererFilter to the MarkupWriter. Note that the filter must be ordered before:* I know before:* is counter-intuitive but the first filter has the opportunity to alter the dom first AND last.

RE: Is it possible to move the mentioned JS files at the bottom of the page

2014-04-24 Thread Venkateswara Rao Surthineni
Hi All, More details for my earlier question to move js files to bottom of the page. Purpose is to make our page loads first then js files as these files are around 1 MB in size). js files are loading from "head", so, page load taking more time effecting low network users. files are : stack/

Re: different results using different binding style

2014-04-24 Thread Thiago H de Paula Figueiredo
On Wed, 23 Apr 2014 22:54:20 -0300, Paul Stanton wrote: Hi all, Hi! My component class has a method as such: public MyEnum getMyEnum1()... If I use the property binding for 'value' it is treated as its 'EnumType' which is compatible with the encoder... ...however using th

different results using different binding style

2014-04-24 Thread Paul Stanton
Hi all, My component class has a method as such: public MyEnum getMyEnum1()... If I use the property binding for 'value' it is treated as its 'EnumType' which is compatible with the encoder... ...however using the 'evaluated' binding the 'value' is converted to a String I