Re: Why I hate mailing lists

2006-07-08 Thread Koka Kiknadze
Well, And you have emails going back to 2002 when the list started? They date back to Dec-2004, but as versions of tapestry evolve old ones become irrelevant. So this is why there's a WWW: so everybody can have their own copy of everything but its OK 'cause it's all hosted by some company

Re: Re: RE: RE: Re: Partial form submit

2006-07-08 Thread Theo vN
Another possibility would be for the form processing cycle only to receive updated values for the parts specified - old values for fields A and C and new/updated values for field B? On 08/07/06, Theo vN [EMAIL PROTECTED] wrote: The Tacos form works great. It can do a partial refresh for only on

Re: Accessing ASO 'Visit' from servlet filter

2006-07-08 Thread Shing Hing Man
I think I have found a solution. Recall that you have a NPE about 'webRequest' being null in the serivce tapestry.globals.RequestGlobals. Usually, the webRequest (and webResponse) in requestGlobal is set in WebRequestServicerPipelineBridge.java. Here is the route to

How to search Tapestry mailing list was-RE: Why I hate mailing lists

2006-07-08 Thread albartell
Try using google by entering the following in the search box: site:http://mail-archives.apache.org/mod_mbox/jakarta-tapestry-user/ KEYWORD Thanks to Rodnei Couto for this tip he gave me a month ago on this list. Aaron Bartell http://mowyourlawn.com -Original Message- From: Epstein,

Re: button/image click to invoke listener

2006-07-08 Thread andyhot
- Use a @DirectLink around an image: aimg/a - Use a @DirectLink and apply a custom 'renderer' http://tapestry.apache.org/tapestry4/tapestry/ComponentReference/DirectLink.html http://tapestry.apache.org/tapestry4/tapestry-contrib/apidocs/org/apache/tapestry/contrib/link/ButtonLinkRenderer.html

Re: From the online docs

2006-07-08 Thread andyhot
Why does this imply one portlet per war?? There is clearly no such limitation. See http://tapestry.apache.org/tapestry4/tapestry-portlet/configuration.html for more... From Epstein, Ezra [EMAIL PROTECTED]: From http://tapestry.apache.org/tapestry4/tapestry-portlet/index.html The pattern of

RE: Re: RE: RE: Re: Partial form submit

2006-07-08 Thread Brian Duchek
I believe that you need to keep the logic for determining if only B should be updated in your submission listener, and use a hidden field/component to track the values last sent to the client. So if the user updates A + B, but only wants to store changes to B... You send everything back to

javascript to tapestry

2006-07-08 Thread glanzel
hi i got a question on how to add javascript to tapestry. i try to add an google maps site to my webapplication, and therefor i need to generate an javscript array from tapestry. my idea - because i found nothing better - was to generate javascript sourcecode inside in Java an then add this

Re: javascript to tapestry

2006-07-08 Thread Jesse Kuhnert
You'll probably want to use the Script template ability in tapestry to do this. See http://tapestry.apache.org/tapestry4.1/UsersGuide/script.html Google maps has been integrated into tapestry at least once already that I know of.

Re: Re: RE: RE: Re: Partial form submit

2006-07-08 Thread Jesse Kuhnert
To really do something like this properly you'd probably have to mess around with the internal implementations of FormSupport / AbstractFormComponent in order to skip over rewinding of form components that you don't want validated / values parsed from. This also starts to slide into the world of

Re: Tacos @PartialFor question

2006-07-08 Thread Theo vN
Without doing submits I mean without doing Form submits. I want to update the page and form with AjaxDirectLinks . On 08/07/06, Theo vN [EMAIL PROTECTED] wrote: There is a @PartialFor rendering a list of fields with @TextField. The user enters and changes values in these fields WITHOUT doing a

Re: Re: Re: RE: RE: Re: Partial form submit

2006-07-08 Thread Jesse Kuhnert
The site for 4.1 is here, http://tapestry.apache.org/tapestry4.1/ . As far as knowing when I'm doing it I usually pop emails out to dev at tapestry.apache.org whenever I'm about to make big changes. On 7/8/06, Theo vN [EMAIL PROTECTED] wrote: I'm looking forward to this implementation. The

Re: Tacos @PartialFor question

2006-07-08 Thread Jesse Kuhnert
Yeah, I just double checked and think you'll be ok. Give it a try :) On 7/8/06, Jesse Kuhnert [EMAIL PROTECTED] wrote: As long as you don't expect any form values to get updated via your call you should be able to use AjaxDirectLink just fine. In theory I made the FormSupport object for tacos

Best practice for new/edit object page?

2006-07-08 Thread Malin Ljungh
Hi everyone, I'm pretty much a newbie on Tapestry and need some help. I'm building a simple web application for administering some data in a database. I use Hibernate for database connection. I'll need several pages that will handle insert of new record to table or editing an existing record. I

Re: Re: Tacos @PartialFor question

2006-07-08 Thread Theo vN
Thanks for your help! Yes, the Form updates just fine - magic. But how do I define a part (for ajax updating later on) for each item of the list in the @PartialFor? Something like.. div jwcid=@tacos:PartialFor