Re: [T5.2.6] AfterRender phase method not called on Mixin when attached to Loop component

2011-11-03 Thread Steve Eynon
Here's the Jira to commit against: https://issues.apache.org/jira/browse/TAP5-1742 I understand why returning false (and effectively cancelling the render phase, e.g. setupRender) can be advantageous, but I can't think of a use case where returning true "and" cancelling / short circuiting the ren

Re: error message don't show

2011-11-03 Thread Olga
Hi, Thanks. Was my error i write not correct component name. -- View this message in context: http://tapestry.1045711.n5.nabble.com/error-message-don-t-show-tp4959090p4960351.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: URL handling ..

2011-11-03 Thread Emmanuel DEMEY
Hi, If you need more informations about LinkTransformer, this post is very helpful : http://blog.tapestry5.de/index.php/2010/09/06/new-url-rewriting-api/ Emmanuel 2011/11/2 Thiago H. de Paula Figueiredo > On Wed, 02 Nov 2011 16:53:37 -0200, Gunnar Eketrapp < > gunnar.eketr...@gmail.com> wrote:

Re: URL handling ..

2011-11-03 Thread Gunnar Eketrapp
OK thanks to both of you! Some more questions ! Can page name can be localized in an easy way !? I would rather not give swedish names to my page classes unless I have to. Is it possible to freely name a page. E.g. so that it separates words with dashes, e.g. "my-profile" And finally if it is

Is there a dynamic search filter for Grids?

2011-11-03 Thread parranz
Hi, I have several grids in my application, and was trying to make a generic filter component for them. My idea was to make something like beaneditform, so that I have only to indicate the type of object that my grid is painting (perhaps some fields that I want to include or exclude too), and th

Re: URL handling ..

2011-11-03 Thread Thiago H. de Paula Figueiredo
On Thu, 03 Nov 2011 10:16:40 -0200, Gunnar Eketrapp wrote: Can page name can be localized in an easy way !? I would rather not give swedish names to my page classes unless I have to. Is it possible to freely name a page. E.g. so that it separates words with dashes, e.g. "my-profile" And fi

Dynamic Questions on a page - T5

2011-11-03 Thread captain_rhino
Firstly I'm still relatively new to Tapestry but know the basics but I ama reasonaly experienced struts web developer. I'm looking for a general steer on how to do the following in Tapestry 5. Any examples welcome but I'm not stupid or lazy enough to ask for a full solution. For my current proj

Re: Dynamic Questions on a page - T5

2011-11-03 Thread Steve Eynon
I've not done much of this, but I believe you want to look at FormFragments - there's a demo on JumpStart: http://jumpstart.doublenegative.com.au/jumpstart/examples/wizard/usingformfragments/$N/$N Steve. On 3 November 2011 20:41, captain_rhino wrote: > Firstly I'm still relatively new to Tape

[T5.3-rc-3] UTF-8 not working with Tomcat7

2011-11-03 Thread Michael Dukaczewski
Since Tapestry 5.3-beta-28 UTF-8 encoding is not working anymore when I deploy on Tomcat7. Locally with Jetty everything is ok, but on Tomcat I only get "?". Until Tapestry 5.3-beta-27 everything was ok with both Jetty and Tomcat. --

Re: [T5.3] Wot No Component Reference?

2011-11-03 Thread Tony Nelson
Is there any way to get the example usages back? For folks still feeling their way around, I found them invaluable. On Nov 2, 2011, at 10:35 PM, Steve Eynon wrote: > I obviously like the Component Reference, for as Bob says, > >> it includes all tapestry components, mixins and pages > > It g

Re: [T5.3] Wot No Component Reference?

2011-11-03 Thread Emmanuel DEMEY
Hi Tony Which exemples do you talk about ? We still have the one define in the xdoc file : http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/corelib/components/Radio.html 2011/11/3 Tony Nelson > Is there any way to get the example usages back? For folks still feeling > their way

Re: [T5.3] Wot No Component Reference?

2011-11-03 Thread Tony Nelson
Radio actually looks good. I didn't go thru them all, but none of the mixins have any example usage. AddRowLink, RemoveRowLink, Unless.. On Nov 3, 2011, at 10:39 AM, Emmanuel DEMEY wrote: > Hi Tony > > Which exemples do you talk about ? We still have the one define in the xdoc > file : >

Requested URL

2011-11-03 Thread Tony Nelson
What is the correct way to get the entire requested URI from a given request? Request has getContext() and getPath(). getPath() leaves off any parameters, which I could rebuild I suppose. But is there any way just the URI with all the parameters (and possibly the anchor) as it was originally r

Re: [T5.3] Wot No Component Reference?

2011-11-03 Thread Bob Harner
I don't think any of the mixins ever had examples. Here are the old pages: http://tapestry.apache.org/5.2/tapestry-core/ref/org/apache/tapestry5/corelib/mixins/Autocomplete.html http://tapestry.apache.org/5.2/tapestry-core/ref/org/apache/tapestry5/corelib/mixins/DiscardBody.html http://tapestry.ap

Re: Dynamic Questions on a page - T5

2011-11-03 Thread captain_rhino
That would definitely seem to be the way forward. When formfragments become visible is it possible to use different Scriptilicious or Jquery effects like fade-in or slide down to make the form fragment visible and hidden and if so how do you integrate this. I guess it may have something to do wit

Re: Dynamic Questions on a page - T5

2011-11-03 Thread Thiago H. de Paula Figueiredo
Doesn't pure JavaScript solve your problem? The advantage of FormFragment is that Tapestry ignores fields inside hidden FormFragments. On Thu, 03 Nov 2011 15:35:21 -0200, captain_rhino wrote: That would definitely seem to be the way forward. When formfragments become visible is it poss

Add attribute to form element

2011-11-03 Thread Wechsung, Wulf
Hello T5-Users! I would like to (programmatically) add an attribute to elements on a form. The attribute is "title" and I would like the value according to metadata in my data model in order to realize a poor man's tooltip. An example of what the result should look like: This will yield a br

Re: Add attribute to form element

2011-11-03 Thread Thiago H. de Paula Figueiredo
On Thu, 03 Nov 2011 16:54:33 -0200, Wechsung, Wulf wrote: Hello T5-Users! Hi! However, I was wondering if there might be an easier way since the Form Component seems to add the 'name' attribute to each input element independent of the PropertyEditBlock. Is this done via JavaScript or i

Re: Requested URL

2011-11-03 Thread Howard Lewis Ship
I don't think there's a direct way to get what you want ... yet, just re-assemble from context, path and query parameters. On Thu, Nov 3, 2011 at 9:30 AM, Tony Nelson wrote: > What is the correct way to get the entire requested URI from a given request? > > Request has getContext() and getPath().

Re: Requested URL

2011-11-03 Thread Thiago H. de Paula Figueiredo
On Thu, 03 Nov 2011 21:45:22 -0200, Howard Lewis Ship wrote: I don't think there's a direct way to get what you want ... yet, just re-assemble from context, path and query parameters. HttpServletRequest.getRequestURL() is a good start: "Reconstructs the URL the client used to make the req

Re: Unknown beaneditform save exception

2011-11-03 Thread TG
I used rc2, it gave the same exception. What else I could do? :( -- View this message in context: http://tapestry.1045711.n5.nabble.com/Unknown-beaneditform-save-exception-tp4956725p4962763.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---