Re: [chenillekit-user] - Working with chenillekit and Tapestry 5.2

2011-04-26 Thread Stefan Markmann
I had the same issue and just switched to OrderedConfiguration as mentioned in the message: // Quartz-Setup public void contributeSchedulerFactory(OrderedConfiguration configuration) { Resource configResource = new ClasspathResource("quartz.properties"); confi

[chenillekit-user] - Working with chenillekit and Tapestry 5.2

2011-04-26 Thread Greg Pagendam-Turner
Hi, I'm wanting to get my site working with the latest production release of Tapestry. My project depends on ChenilleKit quartz. According to the Tapestry mailing list a version 1.3.2 so I'm using that. My current problem is that the code in my app to create a schedular factory public s

Re: Tapestry 5: @Property object is null when using in onActivate

2011-04-26 Thread ael
Why not ? If user is not login private Login login; use return login -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-Property-object-is-null-when-using-in-onActivate-tp4335791p4342352.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread AlbertoAlmagro
Thank you a lot Josh, and to all of you for your answers. I will conclude then that it is problem of firefox... I will try to solve it using CSS. Thank you again, Kind regards, Alberto Almagro Sotelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/Firefox-4-does-not-handle

Re: Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread Josh Canfield
I'm guessing that this has something to do with it... http://www.onenaught.com/posts/382/firefox-4-change-input-type-image-only-submits-x-and-y-not-name On Tue, Apr 26, 2011 at 12:45 PM, AlbertoAlmagro wrote: > If I quit the image property it works in every browser: > > value="${message:button

Re: Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread AlbertoAlmagro
If I quit the image property it works in every browser: but it appears as a normal submit button, not as my custom made ones. Should I submit this failure to someone? (Tapestry/Firefox) Regards -- View this message in context: http://tapestry.1045711.n5.nabble.com/Firefox-4-does-not-handle-

Re: Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread AlbertoAlmagro
Hi Thiago, neither for me, but this is a fact, I am getting that weird behaviour -- View this message in context: http://tapestry.1045711.n5.nabble.com/Firefox-4-does-not-handle-onSelectFrom-tp4341773p4341817.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread AlbertoAlmagro
If you put the property image in the template instead of the java file i.e. It happens the same, Safari and Chrome execute right but not Firefox4... so don't be afraid of 2012 Any ideas? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Firefox-4-does-not-handle-onSelect

Re: Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread Thiago H. de Paula Figueiredo
On Tue, 26 Apr 2011 16:10:34 -0300, AlbertoAlmagro wrote: Hi, I have been trying for hours to find out what is happing with onSelectFrom... in Firefox 4. In Google Chrome and Safari all is OK but Firefox4 isn't able to recognise the onSelectFrom... methods and execute the corresponding one

Re: Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread Sven Homburg
If this should come true, we need no longer afraid of 21 December 2012 ! with regards Sven Homburg Founder of the Chenille Kit Project http://chenillekit.codehaus.org 2011/4/26 AlbertoAlmagro : > Hi, > > I have been trying for hours to find out what is happing with > onSelectFrom... in Firef

Firefox 4 does not handle onSelectFrom...

2011-04-26 Thread AlbertoAlmagro
Hi, I have been trying for hours to find out what is happing with onSelectFrom... in Firefox 4. In Google Chrome and Safari all is OK but Firefox4 isn't able to recognise the onSelectFrom... methods and execute the corresponding one. The code is the following: /* Template */

Re: Blog Post: Tapestry Magic #1

2011-04-26 Thread Taha Hafeez
Perf4j integration related blog http://tawus.wordpress.com/2011/04/26/tapestry-magic-7-tapestry-integration-with-perf4j/ regards Taha On Mon, Apr 25, 2011 at 7:50 PM, Taha Hafeez wrote: > And another one > > http://tawus.wordpress.com/2011/04/25/tapestry-magic-6-environment/ > > regards > Taha

Re: T5: @Validate on RadioGroup

2011-04-26 Thread Adam Zimowski
https://issues.apache.org/jira/browse/TAP5-1513 On Wed, Apr 13, 2011 at 9:46 AM, Adam Zimowski wrote: > Taha - > > You are correct, I was wrong. I patched up RadioGroup by adding: > >    Binding defaultValidate() >    { >        return defaultProvider.defaultValidatorBinding("value", resources);

Re: T5: select zone update in a form

2011-04-26 Thread Adam Zimowski
https://issues.apache.org/jira/browse/TAP5-1512 On Mon, Apr 25, 2011 at 12:15 PM, Adam Zimowski wrote: > After more debugging, the problem seems to be with Tapestry's > IdAllocator and how it generates client side id's for select > components, particularly when Zone is updated. > > In this case,

Re: Tapestry 5: @Property object is null when using in onActivate

2011-04-26 Thread cablepuff
Yes i want to redirect to another page if the user is not sign in. However I found my main problem. I was returning this which would cause it to reinitialize itself, thus causing infinite loop. Instead I return null if the authentication passed. Thanks. -- View this message in context: http

Re: beanModel.reorder does not work on multiple fields

2011-04-26 Thread Emmanuel DEMEY
You can find more informations here : http://download.oracle.com/javase/1.5.0/docs/guide/language/varargs.html 2011/4/26 Andreas Bohnert > hello emmanuel, > > yes, that make sense. thank you. > I was wondering about 'String...' > I haven't seen that before. > > Andreas > >Emmanuel DEMEY >

Re: beanModel.reorder does not work on multiple fields

2011-04-26 Thread Andreas Bohnert
hello emmanuel, yes, that make sense. thank you. I was wondering about 'String...' I haven't seen that before. Andreas Emmanuel DEMEY 26. April 2011 18:42

Re: beanModel.reorder does not work on multiple fields

2011-04-26 Thread Emmanuel DEMEY
Hi Andreas, Try model.reorder("tododate","contextLabel"); The method signature is *BeanModel reorder(String... propertyNames);* Emmanuel 2011/4/26 Andreas Bohnert > Hello! > > I use the following code to change the order of the columns of my grid: > > public BeanModel getModel() { >

beanModel.reorder does not work on multiple fields

2011-04-26 Thread Andreas Bohnert
Hello! I use the following code to change the order of the columns of my grid: public BeanModel getModel() { if (model == null) { model = beanModelSource.createDisplayModel(TicketViewModelBean.class, componentResources.getMessages()); model.reorder("tododate,

Re: Latest tapx 1.1 snapshot depends on T5.3

2011-04-26 Thread Luca Menegus
Thank you! regards, Luca - Original Message - > From: "Howard Lewis Ship" > To: "Tapestry users" > Sent: Monday, April 25, 2011 7:10:38 PM > Subject: Re: Latest tapx 1.1 snapshot depends on T5.3 > Should be fixed now. > > On Sun, Apr 24, 2011 at 9:11 AM, Howard Lewis Ship > wrote: > >