Re: MultiZoneUpdate creates a new nested/inner div with same id

2011-01-31 Thread Howard Lewis Ship
You want to add("foo", foo.getBody()). What's happening now is the the entire Zone, inlcuding its outer Div, is re-rendering, nested inside the previous version of the Zone. In 5.2, I believe you can just add(foo) and it does the right thing (but assumes that the foo Zone has a fixed, explicit cl

property of a property in include parameter of a grid

2011-01-31 Thread Mark
Lets say I have a car object and and engine object in a one to one relationship. It would seem like I should be able to do something like this to add the engine name to the grid. It appears that the grid won't let you reference the property of a property using include. I know I can add a param

Re: Tynamo Conversations & Java 5

2011-01-31 Thread Kalle Korhonen
On Mon, Jan 31, 2011 at 8:29 AM, Igor Drobiazko wrote: > I would ask it the other way around: what is the reason to go with 1.6? > Requiring 1.6 you are loosing some users, expecially those who are working > for a huge company. Huge companies migrate very, very late. I don't see any > language fea

Re: Tynamo Conversations & Java 5

2011-01-31 Thread Igor Drobiazko
I would ask it the other way around: what is the reason to go with 1.6? Requiring 1.6 you are loosing some users, expecially those who are working for a huge company. Huge companies migrate very, very late. I don't see any language feature in 1.6 which I would prefer over a couple of users still u

Re: Who uses Tapestry ? ... eOfficeo!!!

2011-01-31 Thread bagou
Now yes ... http://www.eofficeo.com/fr/services/coffre-fort-numerique http://www.eofficeo.com/fr/services/gestionnaire-de-taches http://www.eofficeo.com/fr/services/liens-externes http://www.eofficeo.com/fr/services/operations-bancaires http://www.eofficeo.com/fr/services/mots-de-passe-80 http://

Re: Tynamo Conversations & Java 5

2011-01-31 Thread Kalle Korhonen
I've always wondered how you can be progressive and conservative at the same time :) No reason except we didn't think that anybody would be using Java5 anymore together with tapestry apps. You could grab the source, set the compiler target version to 1.5 (we changed it in the latest parent to 1.6)

Re: [ANNOUNCEMENT] upcoming module: tynamo-federatedaccounts

2011-01-31 Thread Thiago H. de Paula Figueiredo
This is absolutely awesome! -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and instructor Owner, Ars Machina Tecnologia da Informação Ltda. http://www.arsmachina.com.br -

Tynamo Conversations & Java 5

2011-01-31 Thread Richard Schurig
Hi all, does anybody know if there's a Tynamo Conversations JAR available for Java 5? I just tried version 0.1.2 for Tapestry 5.1.0.5 running with Java 5 and it gives "bad version number in .class file". Any reason why it requires Java 6? Thanks in advance Richard Ressourcen schonen, wen

Re: [ANNOUNCEMENT] upcoming module: tynamo-federatedaccounts

2011-01-31 Thread Borut Bolčina
This is a great contribution to Tapestry! Words would only spoil the good moment :-) Bravo! 2011/1/30 Kalle Korhonen > With 600 million users and counting, it's the new Internet. Yes, I'm > talking about Facebook. Whether you love it or hate it, these days you > have to have a Facebook strategy.

Re: Struggling with Ajax in T5 ...

2011-01-31 Thread LLTYK
The key part of zone updater that does what you want is this: void afterRender() { String url = resources.createEventLink(event, context).toAbsoluteURI(); ... renderSupport.addScript("%sZoneUpdater = new ZoneUpdater(%s)", prefix, spec.toString()); } This is the interface from Tap