Re: ANN: Enjoying Web Development with Tapestry updated for T4.1 (with AJAX)

2007-01-02 Thread Howard Lewis Ship
I've posted your changes to the http://tapestry.apache.org. Can't wait to check out the new content! On 12/30/06, Kent Tong <[EMAIL PROTECTED]> wrote: Hi, I've updated my book for T4.1 with a new chapter on AJAX. The first four chapters are freely available. More info at http://www.agileskill

Re: ServletException with acegi tapestry

2007-01-02 Thread James Carman
Great! I might tell the folks at work to upgrade too. Thanks for the heads up! On 1/2/07, Henry Chen <[EMAIL PROTECTED]> wrote: I found out this is a serialization bug in Acegi 1.0 which is used by tapernate. I downloaded Acegi 1.0.3 and it got fixed. -Original Message- From: [EMAIL

Re: Tap4: Leaving the Page Listener?

2007-01-02 Thread Jesse Kuhnert
Hmmm... That is doubtful. At least my initial gut reaction didn't like it very much. Whether or not a form(s) should be hidden can be easily specified using a single property on a page (if need be) . If you need to control this for your entire application then you could make it a property on a si

Re: Tap4: Leaving the Page Listener?

2007-01-02 Thread karthik G
On 1/3/07, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: I almost added a central hivemind service to expose those page listener methods as global listeners you can have a hivemind service implement to generically listen to all page changes (for all pages) that will be great. I want to be able to

Re: Eventlistener question

2007-01-02 Thread Jesse Kuhnert
It's necessary because of the slew of nightmares associated with preventing memory leaks on the client side as well as not knowing which actual dom nodes do and do not exist(in the browser) already for each request. There's no other way to know without some sort of state knowledge, which would pr

Re: Tap4: Leaving the Page Listener?

2007-01-02 Thread Jesse Kuhnert
You can probably add some sort of hivemind interceptor to the typical core engine services (direct / page / etc ) to listen for page changes on a per user basis. It could get a little sticky in a lot of scenarios. (Such as handling different session persistence strategies - but if it's just for on

Re: Tapestry/Hivemind + Terracotta

2007-01-02 Thread Jesse Kuhnert
Sure, sounds great! (i think? ) Go for it. :) On 1/2/07, KEGan <[EMAIL PROTECTED]> wrote: Dear Tapestrians, http://www.terracotta.org/ is an open source clustering for Java (with heap level replication) ... seems very COOL! I am mostly using Tapestry for all my web development needs. I am won

Tapestry/Hivemind + Terracotta

2007-01-02 Thread KEGan
Dear Tapestrians, http://www.terracotta.org/ is an open source clustering for Java (with heap level replication) ... seems very COOL! I am mostly using Tapestry for all my web development needs. I am wondering if anyone started to use Terracotta for clustering with Tapestry+Hivemind ? Could Tape

Tap4: Leaving the Page Listener?

2007-01-02 Thread Dennis Sinelnikov
Hey guys, I've searched and searched, but nothing too appealing popped up. Ideally, I would like to attach a listener to SomePage.java class. This listener would get fired when a user is leaving the current page. In this listener method, I would simply reset some of the persistent session p

RE: ServletException with acegi tapestry

2007-01-02 Thread Henry Chen
I found out this is a serialization bug in Acegi 1.0 which is used by tapernate. I downloaded Acegi 1.0.3 and it got fixed. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Carman Sent: Sunday, December 31, 2006 6:46 PM To: Tapestry users Subject: Re

Add paremeter in For type component

2007-01-02 Thread Ivan S. Georgiev
Hi all, I am quite new to tapestry. I am trying to run a simple menu. It is made with links and sublinks - when user click links, the sublinks are shown below the lhe parent link. I was wondering if I can pass a paremeter with the current link evaluated to the 'sublinks' component so in my Home.ja

Add paremeter in For type component

2007-01-02 Thread ivan.georgiev
Hi all, I am quite new to tapestry. I am trying to run a simple menu. It is made with links and sublinks - when user click links, the sublinks are shown below the lhe parent link. I was wondering if I can pass a paremeter with the current link evaluated to the 'sublinks' component so in my Home.ja

RE: Raw values in contrib:table

2007-01-02 Thread Greg.L.Cormier
Great, I got it going. I read the documentation, had no idea what it was saying. Dug through the source code, got completely confused... then went back to the documentation, and then it made sense.. I just did a 3 line block element at the top of my HTML page, bam, it works! And they're very si

RE: Raw values in contrib:table

2007-01-02 Thread Greg.L.Cormier
Thanks! I'm still digging, it's a little confusing since it's split up as a JWC for LocaleSelection.. trying to piece everything together. I'd rather not split mine into a JWC file. -Original Message- From: Robert Zeigler [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 02, 2007 3:41 PM

Re: Raw values in contrib:table

2007-01-02 Thread Robert Zeigler
Yup, you only need to override the column(s) that need the custom rendering. All others will be rendered as they are currently. Robert [EMAIL PROTECTED] wrote: Thanks. I'm digging through workbench code to get a feel for this.. LocaleSelection.* Will I be able to override that one column onl

RE: Raw values in contrib:table

2007-01-02 Thread Greg.L.Cormier
Thanks. I'm digging through workbench code to get a feel for this.. LocaleSelection.* Will I be able to override that one column only? Or will I need to override it, and then provide defaults for all the other columns? -Original Message- From: andreas a [mailto:[EMAIL PROTECTED] Behalf

Re: Raw values in contrib:table

2007-01-02 Thread andyhot
http://tapestry.apache.org/tapestry4.1/tapestry-contrib/componentreference/table.html "If defined, a Block with a name that starts with the column id and ends with /ColumnValue/ will be used to render the column values. Similarly, a Block with a name that starts with the column id and ends with /C

Re: How to read Hidden Value in Tapestry Page class ?

2007-01-02 Thread Shing Hing Man
I presumed when you said 'refresh' the parent page, you mean you have submitted the form on the parent page. When the form is submitted, the pageBeginRender is called twice. 1) PageBeginRender method is called in rewinding mode. None of the submitted values from the form are available yet(includin

Raw values in contrib:table

2007-01-02 Thread Greg.L.Cormier
On my tableView I have literal: * id:getId(), englishTitle:getEnglishColumn(), frenchTitle:getFrenchColumn() the 2nd and 3rd columns return some html links, but they get escaped. How can I get these to get displayed as html? I've tried adding a raw="true" in the html, but it's not

Eventlistener question

2007-01-02 Thread Markus Joschko
Hi all, I have a page in which a Eventlistener is defined. As the event occurs a component is added programmatically to the updatelist (in the listener) and the response is rendered. In the response there is always the initialization part of the Eventlistener included. Is there something I need to

How to read Hidden Value in Tapestry Page class ?

2007-01-02 Thread sunilmanu
Hi, I open a new window ('child window') from my Tapestry application (parent page)...and put an object into session. When the user Closes the 'child' window, i change in the 'Parent page' a Hidden Value of a property to TRUE and then do a refresh to that page. Now I want to be able to READ t

RE: Migration experiences (3.0 -> 4.1? )

2007-01-02 Thread Robert J. Walker
I've been migrating from 3.1 to 4.1, and yes, it's been pretty painful. The documentation found at http://tapestry.apache.org/tapestry4/ and http://tapestry.apache.org/tapestry4/UsersGuide/upgrade.html is woefully incomplete unless your application is very simple. I've been keeping notes on eve

tacos AjaxDirectLink popup parameter does not respect displayCloseAction=false

2007-01-02 Thread Shing Hing Man
For the popup parameter in tacos's (4.0.1) AjaxDirectLink component, when the parameter displayCloseAction is set to false, the popup (floating pane) still shows the 'close popup' icon on the top right corner of the popup. literal:{ title:"Help Pop up",

Properties references

2007-01-02 Thread cedric . brajus
Hello everybody, I use tapestry 3 and I would like obtain the list of references properties include in a page. In this page there is a lot of component and I don't know how Tapestry work to translate the page. I search and I see this but I don't access at the names of the differents properties

ClassCastException when using @InjectSpring

2007-01-02 Thread karthik G
Hi, I'm using tapestry-spring-0.1.2 and tapestry 4.0.1 + annotations 4.0.2 I get a ClassCastException in the tapestry page when using @InjectSpring. Any idea what is going wrong here. @InjectSpring("productService") public abstract ProductService getProductService(); The type of the bean retu