Re: Building a multizone update in a loop

2011-01-10 Thread Mark
Thank you. That makes sense now. On Mon, Jan 10, 2011 at 11:44 PM, Josh Canfield wrote: > MultiZoneUpdate is confusing for sure. > > public MultiZoneUpdate add(String zoneId, Object renderer) >    { >        return new MultiZoneUpdate(zoneId, renderer, this); >    } > > See how it returns a new i

Re: Building a multizone update in a loop

2011-01-10 Thread Josh Canfield
MultiZoneUpdate is confusing for sure. public MultiZoneUpdate add(String zoneId, Object renderer) { return new MultiZoneUpdate(zoneId, renderer, this); } See how it returns a new instance of the update when you call add? You can change your code like this and it should get things

Building a multizone update in a loop

2011-01-10 Thread Mark
I have a zone that is rendered in a loop. It has a text field that can be changed and it updates the cost for that row and the total cost at the bottom of the page. This all works fine regardless of how many items are in the row. A user change to the qty in a row will update that row's total and

Re: translators in 5.2+

2011-01-10 Thread Josh Canfield
Have you tried : configuration.override(BigDecimal.class, new BigDecimalTranslator()); Josh On Mon, Jan 10, 2011 at 2:01 PM, Paul Stanton wrote: > can someone shed some light on how to override or supply new translators to > tapestry 5.2+ ? > > jumpstart is written for 5.1 > http://jumpstart.do

Re: translators

2011-01-10 Thread françois facon
Hi Paul have look on https://github.com/frafac-JumpStart/jumpstart-4.12.2/commit/156beb4e67eaf696ad75e13cb54192134efa97f6 and https://github.com/frafac-JumpStart/jumpstart-4.12.2/issues/closed#issue/12 BR François 2011/1/10 Paul Stanton > can someone shed some light on how to override or s

translators in 5.2+

2011-01-10 Thread Paul Stanton
can someone shed some light on how to override or supply new translators to tapestry 5.2+ ? jumpstart is written for 5.1 http://jumpstart.doublenegative.com.au/jumpstart/examples/input/creatingtranslators1 and no longer works. i've tried adding: public static void contributeTranslatorSou

translators

2011-01-10 Thread Paul Stanton
can someone shed some light on how to override or supply new translators to tapestry 5.2+ ? jumpstart is written for 5.1 http://jumpstart.doublenegative.com.au/jumpstart/examples/input/creatingtranslators1 and no longer works. i've tried adding: public static void contributeTranslatorSou

Tapestry5 + Tomcat5 + Apache2

2011-01-10 Thread Matias Blasi
Hi all! I am gentting a problem with a the following scenario: A tapestry5 application with a field with the @OnEvent mixin (chenillekit) All this running on Tomcat5, behind Apache2. I made a Proxy configuration in Apache2 in order to hide the server port: http://localhost:8080/*> Order deny

Re: and user types ...

2011-01-10 Thread Gunnar Eketrapp
Great and thanks for the info! Now it works without writing any conduit classes ... 2011/1/10 Yohan Yudanara : > Oops.. sorry, Gunnar. Thiago is right. You don't need PropertyConduit. > We need PropertyConduit if we add non-property column on Grid. > > So, you just need this on setupRender: > void

Re: Opportunity for some PR?

2011-01-10 Thread Josh Canfield
I love working in Tapestry and there is some truth in what the person has to say. I believe in the Tapestry5 framework but I also know there is a long way we need to go to distance ourselves from the pain that people experienced when Tap3/4 stopped getting Howard's attention. The choice of calling

Re: Run Before Hibernate Loads

2011-01-10 Thread Kalle Korhonen
(Sorry I reordered your post, and keep the discussion on users list please). On Mon, Jan 10, 2011 at 10:39 AM, Rich M wrote: > I'm a bit late catching up on list reading, but I saw this message you had > written and it looked like something I've been interested in doing with my > Hibernate setup

Re: Opportunity for some PR?

2011-01-10 Thread Thiago H. de Paula Figueiredo
On Mon, 10 Jan 2011 14:46:58 -0200, wrote: Just posted: http://stackoverflow.com/questions/4638851/what-java-web-application-framework-to-use If you look at the things tagged Tapestry there are quite a few opportunities to help clear up some misconceptions about Tapestry. It looks like t

RE: Opportunity for some PR?

2011-01-10 Thread jackkurosaki
>Just posted: >http://stackoverflow.com/questions/4638851/what-java-web-application-framework-to-use If you look at the things tagged Tapestry there are quite a few opportunities to help clear up some misconceptions about Tapestry. It looks like there are two people who heavily use the StackOve

Re: and user types ...

2011-01-10 Thread Yohan Yudanara
Oops.. sorry, Gunnar. Thiago is right. You don't need PropertyConduit. We need PropertyConduit if we add non-property column on Grid. So, you just need this on setupRender: void setupRender() { beanModel = beanModelSource.createEditModel(, messages); beanModel.add(""); } Best Regar

chenillekit-tapestry 1.3.0 Unable to resolve 'chenillekit/TabSet'

2011-01-10 Thread Borut Bolčina
Hi, just now I tried to use the TabSet component from chenillekit-tapestry 1.3.0 with Tapestry 5.2.4. I am getting this Unable to resolve 'chenillekit/TabSet' to a component class name. When my application starts, it prints the available components and TabSet is one of them: chenillekit/TabSet:

Re: t5: secure annotation

2011-01-10 Thread Thiago H. de Paula Figueiredo
On Mon, 10 Jan 2011 11:31:07 -0200, Angelo C. wrote: Hi, Hi! putting @secure in a class and run it in mvn jetty:rn, got: SSL connection error. how to setup jetty to take care of this? Thanks, Chech the SSL Jetty documentation. This is not related to Tapestry at all. -- Thiago H. de P

Re: t5: secure annotation

2011-01-10 Thread Joost Schouten (ml)
This [1] is my jetty plugin in my pom.xml where src/test/resources/jettykeystore.cert is my selfsigned certificate. Hope it is what you are looking for. Cheers, Joost [1] maven jetty plugin with SSL enabled org.mortbay.jetty maven-jetty-plugin 8080 6 8443 3 src/test/resources/

t5: secure annotation

2011-01-10 Thread Angelo C.
Hi, putting @secure in a class and run it in mvn jetty:rn, got: SSL connection error. how to setup jetty to take care of this? Thanks, Angelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/t5-secure-annotation-tp3334816p3334816.html Sent from the Tapestry - User mailin

Re: and user types ...

2011-01-10 Thread Thiago H. de Paula Figueiredo
On Mon, 10 Jan 2011 06:13:33 -0200, Gunnar Eketrapp wrote: Thanks Yohan ! I now got it to work with my Money type in the grid + sorting. I created a TransactionAmountPropertyConduit as you advised ... But it's less then ideal to have to write a PropertyConduit class every time you use an own

Re: and user types ...

2011-01-10 Thread Gunnar Eketrapp
Thanks Yohan ! I now got it to work with my Money type in the grid + sorting. I created a TransactionAmountPropertyConduit as you advised ... But it's less then ideal to have to write a PropertyConduit class every time you use an own defined type in a grid. Have I missed something ... Thanks a