Replicating t:id into component html id

2010-02-20 Thread Lionel Touati
Hi List, I may have missed something, but it seems that t:Id is not transformed into a html ID at least for the pagelink component. It seems quite odd to me, as you then need to add the id field manually in the TML file. Also it does not seem to be consistent with the form fields for example

Renaming resource files

2010-02-18 Thread Lionel Touati
Hi List, Lots of validation messages do have both language and country part of their name. It makes lots of sense for some countries, but for fr it means that tapestry default to en for locale such as fr_CA or fr_BE where if the file name did not include the country, it would default to fr, whi

StaleLinkException with LinkSubmit in 4.1.2

2007-08-04 Thread Lionel Touati
Hi List, I'm having a strange problem with a LinkSubmit component. Here's a part of my template listener="ognl:listeners.defaultFormSubmit" delegate="ognl:beans.delegate" autocomplete="off"> action="ognl:listeners.newCard"> l

Re: AssetExternaliser in 4.1.2

2007-07-25 Thread Lionel Touati
externalizing an asset mean? On 7/21/07, Lionel Touati <[EMAIL PROTECTED]> wrote: Hi List, In Tapestry 3, there was the ability to externalize assets on the web server to avoid contention on the Tomcat instance. Apparently this feature does not exist anymore. Is this something I've

AssetExternaliser in 4.1.2

2007-07-21 Thread Lionel Touati
Hi List, In Tapestry 3, there was the ability to externalize assets on the web server to avoid contention on the Tomcat instance. Apparently this feature does not exist anymore. Is this something I've missed, or a requirement for V4 ? Thanks for your feedback ---

Re: To the french fellows of the list

2007-06-27 Thread Lionel Touati
lti-valuated attributes in place of bean properties. Francois Armand [just a notice to Lionel Touati : by respect to other reader, I think we should always write in English on this list : even non French people may be interested of what happen in Tapestry community (we French people always w

To the french fellows of the list

2007-06-26 Thread Lionel Touati
Hi to all, This message is addressed to the French participant of the list. For the others you can skip it. Bonjour à tous, En lisant cette liste, je me rends compte qu'il y a un nombre certains de français qui utilisent Tapestry 3/4/5 dans leurs développements. Que penseriez-vous de se r

Using another encoding than UTF-8 in Ajax requests

2007-06-19 Thread Lionel Touati
Hi List, It seems UTF-8 is hard coded in the core.js and form.js. Our application was build using ISO-8859-1 and it is quite an issue to move it to another charset. Is there a way that this value could match the org.apache.tapestry.output-encoding one ? Thanks for any insight L. --

Re: Tap 4.1.2 / Palette

2007-06-18 Thread Lionel Touati
"${formSubmitFunctionName}"); Any idea if I miss something ? L. Lionel Touati a écrit : Hi List, It seems there's a bug in the form submission mechanism. When you have a page with the palette component it seems the onsubmit listener is never called when clicking on a submit

Tap 4.1.2 / Palette

2007-06-18 Thread Lionel Touati
Hi List, It seems there's a bug in the form submission mechanism. When you have a page with the palette component it seems the onsubmit listener is never called when clicking on a submit button. Does this tells anyone something ? If not, I'll try to create a test case for it Thanks -

Auto Page cleanup

2007-06-14 Thread Lionel Touati
Hi List, I was wondering if some of you had worked on a issue we're facing. Say you've got a navigation path on which you want the user to have the ability to go back and forth. In order to do that we need to have some of our properties to be persistent. This work great, however it puts a loa

Tapestry 4.1.2 Expected release Date

2007-06-13 Thread Lionel Touati
Hi Jessee, I was wondering if you've updated the schedule for 4.1.2 release. You wrote earlier that you would be waiting for OGNL to get stable before announcing anything. It seems to me this is the case now, so do you have an idea on when this could happen now ? Thanks for the hard work L

Re: Setting a message for Identity Validator

2007-06-12 Thread Lionel Touati
Hi List, There is no way AFAIK to specify a different message to be displayed for the Identity validator. For example, when using the following format match=password[%user_general_info_ERR12], it does not pickup the specified message. When looking at the code the Identity class looks for the

Re: tapestry links too long for ie? [t4]

2007-05-12 Thread Lionel Touati
ormlinkrenderer-throws-npe-withdirectllinks-1803601.html My question is, where can I download Tapestry v4.0.3? All the links on the tapestry site and on google only point me to v4.0.3? Thanks, Josh Lionel Touati wrote: Yes IE has a strong limit on the number of character

Re: tapestry links too long for ie? [t4]

2007-05-12 Thread Lionel Touati
Yes IE has a strong limit on the number of characters a GET url can be. The solution is to use a FormLinkRenderer, which will create a piece a javascript and transform your URL into a post that don't have such limits For example: renderer="ognl:@[EMAIL PROTECTED]">Lnk L. Ben Acker a écrit :

Tapestry 4.1.2 / Number of Threads

2007-05-02 Thread Lionel Touati
Hi All, When runnning tapestry 4.1.2, I see lots of non application / tomcat threads being created. It seems they're tiggered by GenericKeyedObjectPool. Any idea of the consequence in a production environment ? i.e, is there a way to control the number of created threads ? Thanks for the ans

OGNL issues

2007-05-02 Thread Lionel Touati
Hi All, I'm still having issues with OGNL with the latest OGNL / TAP ( out of SVN) combination. This simple invocation for example: ognl:getCell(column,row).fareType.name()+'_icone' always fails with the following exception nable to read OGNL _expression_ '' of [EMAIL PROTECTED]: target is

TAP 4.1.2 : Table Component and storing state on the client

2007-05-02 Thread Lionel Touati
Hi All, I'm using the table component in a client based state storage application. It seems to work fine, however I encounter some issues as the client state parameter is too big to work with IE. It sometimes also break in firefox. To overcome this issue we isually use a FormLinkRenderer, but

Problem with component Dialog with Internet Explorer and Tapestry 4.1.2

2007-03-30 Thread Lionel Touati
Hi All, The Dialog component works fine with Firefox. With Internet Explorer, it displays funnily: it takes up all the width of the screen and some of the content is not displayed at all. We've tried applying a style (with properties width and height) locally but it does not take that into ac

Re: EventListener and DatePicker

2007-03-01 Thread Lionel Touati
In fact this issue was raised by the fact the DatePicker does not automatically updates after being changed during the AJAX response Here's a patch to the DatePicker.script to handle that L. Lionel Touati a écrit : Hi , I'm trying to put up a sample to use two date pickers, an

EventListener and DatePicker

2007-03-01 Thread Lionel Touati
Hi , I'm trying to put up a sample to use two date pickers, and an event listener. When I change the value of the first one, the second should be updated. The code is working, and in Firebug I see the proper html back from the server with the correct date, however the page is not updated in f