Re: DateField Customization

2012-11-16 Thread Lance Java
t:datefield icon=path/to/myicon.gif ... / -- View this message in context: http://tapestry.1045711.n5.nabble.com/DateField-Customization-tp5718034p5718042.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: DateField Customization

2012-11-16 Thread Lance Java
Note, if you'd like to override the default date editor in the BeanEditForm you will need to contribute an EditBlockContribution to the BeanBlockOverrideSource service. This will require you to create a private page with a block containing a DateField. The page can be made private by annotating it

How stable is 5.4 jsrewrite?

2012-11-16 Thread Lance Java
Hi all, I'm keen to give the js-rewrite branch [1] a whirl and enjoy the twitter-bootstrap and jquery goodness without the need for 3rd party component libraries. I'll only be using it for a toy project but was wanting to get a feel for the current state of the branch. A simple answer such as:

Re: How stable is 5.4 jsrewrite?

2012-11-16 Thread llama-king
Seconded! ^_^; -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-stable-is-5-4-jsrewrite-tp5718044p5718045.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe,

Re: How stable is 5.4 jsrewrite?

2012-11-16 Thread Muhammad Gelbana
Good question. I asked a similar one before but no one answered. I don't wan't to to put any more pressure on the developers but tapestry is offering magnificent stuff and it gets better with every release. The way I see it, Its the developers mistake to commit to such a great framework :) On

BeanEditForm and hibernate

2012-11-16 Thread Nicolas Barrera
Hi all, I 'm not using the tapestry-hibernate module. I 'm using spring configured hibernate, tapestry-spring, and an open session in view spring filter. I can use BeanEditForm to create a new entity and save it, the problem is when trying to modify an existing entity. My problem is that

What is @ApplicationScoped for tapestry?

2012-11-16 Thread membersound
Hi, how can I make an @ApplicationScoped within tapestry? Is there any pendant to share the same data within one single class across the application in T5? Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/What-is-ApplicationScoped-for-tapestry-tp5718048.html Sent

Re: What is @ApplicationScoped for tapestry?

2012-11-16 Thread Kristian Marinkovic
use @SessionState in T5 g, kris On Fri, Nov 16, 2012 at 5:16 PM, membersound memberso...@web.de wrote: Hi, how can I make an @ApplicationScoped within tapestry? Is there any pendant to share the same data within one single class across the application in T5? Thanks -- View this

Re: What is @ApplicationScoped for tapestry?

2012-11-16 Thread membersound
This shares a variable between multiple pages. BUT I'm looking for some kind of data-pool service. So I want to annotate the service and it should contain the same data among ALL sessions. -- View this message in context:

Re: What is @ApplicationScoped for tapestry?

2012-11-16 Thread Lenny Primak
Any kind of a singleton service can be used as a data pool See http://tapestry.apache.org/defining-tapestry-ioc-services.html On Nov 16, 2012, at 11:24 AM, membersound wrote: This shares a variable between multiple pages. BUT I'm looking for some kind of data-pool service. So I want to

Re: What is @ApplicationScoped for tapestry?

2012-11-16 Thread Thiago H de Paula Figueiredo
On Fri, 16 Nov 2012 14:28:17 -0200, Lenny Primak lpri...@hope.nyc.ny.us wrote: Any kind of a singleton service can be used as a data pool See http://tapestry.apache.org/defining-tapestry-ioc-services.html In other words: put the application-scoped data as fields in a class, write some

Re: What is @ApplicationScoped for tapestry?

2012-11-16 Thread membersound
That's very keen, ty! And again one more point why I hate having to use plain JSF at work ;) -- View this message in context: http://tapestry.1045711.n5.nabble.com/What-is-ApplicationScoped-for-tapestry-tp5718048p5718053.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: How stable is 5.4 jsrewrite?

2012-11-16 Thread Bob Harner
Howard's JS rewrite has mad a lot of progress in recent weeks, and he has said a couple of times that he hopes to have something ready (for at least an alpha release) by the end of the year. My guess is that it won't really be usable until that alpha release, but that's just my perception based on

Re: What is @ApplicationScoped for tapestry?

2012-11-16 Thread Cezary Biernacki
On Fri, Nov 16, 2012 at 6:04 PM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Fri, 16 Nov 2012 14:28:17 -0200, Lenny Primak lpri...@hope.nyc.ny.us wrote: Any kind of a singleton service can be used as a data pool See