RE: T4 to T5 component usage

2012-09-20 Thread Ken in Nashua
Referring to syntax... nothing personal. kcola...@live.com From: kcola...@live.com To: users@tapestry.apache.org Subject: RE: T4 to T5 component usage Date: Thu, 20 Sep 2012 23:06:27 -0400 Apologies for post... I uncovered some additional configurations that I failed to migrate to my

RE: T4 to T5 component usage

2012-09-20 Thread Ken in Nashua
Apologies for post... I uncovered some additional configurations that I failed to migrate to my T5 code base. The actual definitions of the components usage I am attempting to use... inside my Home.tml content goes here

Query Parameter Suggestions

2012-09-20 Thread George Christman
Hello, I'm currently taking some time to upgrade my personal application, CarDaddy.com from version 5.1 to 5.3. I'm looking for suggestions in regards to Tapestries query parameters. Currently we are passing a list into activation context, but I'm wondering if it would be better to use a query str

Re: Tapestry & Spring localization

2012-09-20 Thread Manish Shrestha
Hi, I am working on a Tapestry/Spring project and I am stuck at a problem related to localization. I am using the Spring implementation of internationalization and I would like the tapestry components to look for the messages in the spring message catalog and not in the tapestry message catalog.

T4 to T5 component usage

2012-09-20 Thread Ken in Nashua
Guys/Gals (if any), I am upgrading some T4 code to T5 I have a T4 component configuration/usage as follows: --- TML snippet --- Items Per Page --- JAVA snippet --- @Component(parameters = { "event=itemsPerPageCha

Re: Using @Persist with entities

2012-09-20 Thread Thiago H de Paula Figueiredo
On Thu, 20 Sep 2012 18:31:16 -0300, RJB III wrote: But what do I do if I want to do this: public class ViewPerson { @Persist("entity") @Property private Person kevin; @Persist("entity") @Property private Person jeff; void onActivate(Person kevin, Person jeff) //?? { this.

Re: Preload js after block update

2012-09-20 Thread Thiago H de Paula Figueiredo
On Thu, 20 Sep 2012 18:18:13 -0300, rosecorp wrote: Hi Guys, Hi! I have a block element in tml which contains other components with heavy js content. Is it possible to pre-load those java script files before zone update? Why don't you just use @Import to load these JavaScript files?

Using @Persist with entities

2012-09-20 Thread RJB III
The documentation says I can do this: public class ViewPerson { @Persist("entity") @Property private Person person; void onActivate(Person person) { this.person = person; } } But what do I do if I want to do this: public class ViewPerson { @Persist("entity") @Proper

Preload js after block update

2012-09-20 Thread rosecorp
Hi Guys, I have a block element in tml which contains other components with heavy js content. Is it possible to pre-load those java script files before zone update? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Preload-js-after-block-update-tp5716410.html Sent from the

RE: Ajax Upload for Tapestry

2012-09-20 Thread Amr Mohamed Mahmoud Hassanien
Hello Guys, Is there any answer about this? The problem is AjaxUpload.getValue() is not called on form submission. My knowledge in tapestry components is limited, I don't know how to a component is wired with UI and the page class. You are answer is much appreciated. Regards -Original Me