Re: Using Tapestry? Feedback on devrates.com is always welcome!

2012-12-11 Thread Stephan Windmüller
On 10.12.2012 19:51, Howard Lewis Ship wrote: > http://devrates.com/project/show/89512/Tapestry The link is returning an error: "502 Bad Gateway" http://www.downforeveryoneorjustme.com/http://devrates.com/project/show/89512/Tapestry - Stephan smime.p7s Description: S/MIME Kryptografische Unt

RE: Bean Editor class cast issue method access issue

2012-12-11 Thread Ken in Nashua
Thanks Jens... I am certain its a coach. But I could be wrong... I am not finding enough docs on their mixin and its usage other than the source module itself. I have a gallery of coaches... displayed with their photo property. But each coach is a pagelink to an edit page. The idea being... i

Re: Tapestry-Portlet status?

2012-12-11 Thread Thilo Brüßhaber
Hello François, I'm working successfuly with tapestry5-portlet (maint-5.3) on Liferay 6.1.x. The only issue for me is when returning a StreamResponse I cannot set any HTTP headers in the response. StreamResponse.prepareResponse() is called, but the headers, e.g. "Content-Disposition" are not send t

Re: Using Tapestry? Feedback on devrates.com is always welcome!

2012-12-11 Thread Stephan Windmüller
On 11.12.2012 09:13, Stephan Windmüller wrote: > The link is returning an error: "502 Bad Gateway" Okay, seems that was a temporary problem. - Stephan smime.p7s Description: S/MIME Kryptografische Unterschrift

Re: Bean Editor class cast issue method access issue

2012-12-11 Thread Thiago H de Paula Figueiredo
On Mon, 10 Dec 2012 22:22:47 -0200, Ken in Nashua wrote: Thanks Thiago... Hi, Ken! yes Person is a superclass to Coach the mb: binding... well the tynamo guys did that. I had hoped one of them might comment on it... Kalle or Alejandro it woul be nice... because I got no clue what it is

Validation issue with Tapestry 4

2012-12-11 Thread SAMPY
I have got few simple IformComponent elements in a page. But the page contains some of dynamic components, those again have some IformComponent fields. How can I delegate validation messages in that case. Let me show with an example. where this PaymentSelection is component, that renders the

RE: Bean Editor class cast issue method access issue

2012-12-11 Thread Ken in Nashua
Thanks Jens, It appears the default edit page for the framework operates an object. Subsequent customizations means to cut/paste new edit page for the pojo in question... CoachEdit.tml default being Edit.tml I think I will go from there and see what gives. - cheers Ken

Re: any neat egg timer or similar animated icon for waiting?

2012-12-11 Thread Lenny Primak
The tree component has one, But I don't have a clue how to use it in your own component. Anyone has any ideas? On Dec 11, 2012, at 10:00 AM, "John" wrote: > I'm looking for a simple component that animates when a user presses search > button and waits for the server to return rows and refresh

Re: any neat egg timer or similar animated icon for waiting?

2012-12-11 Thread Thiago H de Paula Figueiredo
On Tue, 11 Dec 2012 14:52:33 -0200, Lenny Primak wrote: The tree component has one, But I don't have a clue how to use it in your own component. Anyone has any ideas? Actually, it's easy. Just two steps: 1) Write some JavaScript that shows something (a spinner, modal window, etc) when th

Exception constructing service 'ValueEncoderSource'

2012-12-11 Thread Borko Djurovic
I have two value encoders: LibrarianEncoder and ReaderEncoder. *LibrarianEncoder.java* @SuppressWarnings("rawtypes") public class LibrarianEncoder implements ValueEncoder { private Session session; public LibrarianEncoder(Session session) { this.session = session;

Re: Exception constructing service 'ValueEncoderSource'

2012-12-11 Thread Thiago H de Paula Figueiredo
Are you using tapestry-hibernate? If yes, it already creates the ValueEncoder's for your entity classes. On Tue, 11 Dec 2012 15:17:48 -0200, Borko Djurovic wrote: I have two value encoders: LibrarianEncoder and ReaderEncoder. *LibrarianEncoder.java* @SuppressWarnings("rawtypes") public c

Re: Exception constructing service 'ValueEncoderSource'

2012-12-11 Thread Lance Java
The tapestry-hibernate module provides ValueEncoders for all hibernate entities. If you want to override the ValueEncoders provided by tapestry-hibernate, you should use override() instead of add(). eg: configuration.override(Librarian.class, librarianFactory); configuration.override(Reader.

Re: Tapestry-Portlet status?

2012-12-11 Thread François Facon
Hello Thilo, You are right. we have to fix that. Could you open an issue at https://github.com/got5/tapestry5-portlet/issues? Thank you for the feedback. Freundlich grüßt François 2012/12/11 Thilo Brüßhaber : > Hello François, > I'm working successfuly with tapestry5-portlet (maint-5.3) on Life

[5.3.6] A homepage instead of "Index"

2012-12-11 Thread Muhammad Gelbana
I'm not sure if that's a usual requirement but here it is. I need to have another page as a default homepage instead of the "Index" page. I can do that by returning the page I need from an "Index" page method that handles @SetupRender or @OnEvent(value=EventConstants.Activate) events, I'm not quire

Re: [5.3.6] A homepage instead of "Index"

2012-12-11 Thread Dusko Jovanovski
Try overriding the SymbolConstants.START_PAGE_NAME symbol. On Tue, Dec 11, 2012 at 10:55 PM, Muhammad Gelbana wrote: > I'm not sure if that's a usual requirement but here it is. I need to have > another page as a default homepage instead of the "Index" page. I can do > that by returning the page

Component that displays additional "containing Page" markup

2012-12-11 Thread bogdan_cm
Hello everyone, How can I allow "Page" information to be part of the component markup output? Take for example the zone component: --> component this is the time on day ${timeOfDay} -> this value comes from the Page containing the component When I write my own component, how can I pas

Re: Component that displays additional "containing Page" markup

2012-12-11 Thread Taha Siddiqi
Hi Bogdan No sure if I understand you question correctly. From what I understand you can use block parameters or regards Taha On Dec 12, 2012, at 10:22 AM, bogdan_cm wrote: > Hello everyone, > How can I allow "Page" information to be part of the component markup > output? Take for example

RE: Bean Editor class cast issue method access issue

2012-12-11 Thread Ken in Nashua
Hi Jens, I found out what the "mb:bean" notation is... its just a custom binding In tapestry we can specify such notations "prop:myProperty" In this case... the framework I am using TYNAMO implements a new binding called ModelBinding and it gets facilitated by a ModelBindingFactory. package o

Re: How to sort Association column in Grid?

2012-12-11 Thread karans
Thank you soo much for the responce . -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-sort-Association-column-in-Grid-tp5718569p5718625.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---