Problems using ioko-cache control

2011-03-30 Thread tmarx78
Hello everyone! I am trying to use ioko-cache control in a project. Adding the dependency and starting the project again was working so far. The problem is, once I add the cache-markup, the app breaks at runtime with: Exception constructing service 'ContentCache': Error invoking constructor uk

Re: How to implement nested components?

2011-03-30 Thread leon
Thanks for your reply! Actually, I want to know how to implement nested components. I will show you my scenario: 1. Requirment: A wizard that include some step to guide users complete a task, e.g. a sale order 2. Current Implementation: I implemented two components Wizard and WizardStep, and use t

Re: Logon notification

2011-03-30 Thread Jonathan Barker
Jim, I would be interested in seeing your HTTPSessionListener implementation. David, I'm going to hazard a guess that indeed you would need to do some configuration through tapestry-ioc. Can I assume that the events that you do see are from services that you have configured entirely in Spring?

Re: T5: form validation with pre-existing errors

2011-03-30 Thread Taha Hafeez
ValidationTracker !! Thanks for sharing regards Taha On Thu, Mar 31, 2011 at 1:06 AM, Adam Zimowski wrote: > Tapestry friends! > > Your silence combined with my milestone demo today only motivated me > to stay up couple of nights in a row, fire off debugger and step into > Tapestry source to g

Re: Setting contenttype of T5 form

2011-03-30 Thread Fernando Benjamin
Haaa, I overlooked the other option, I'll try with javascript! Thank you! On 31 March 2011 00:14, Fernando Benjamin wrote: > Hi Howard, > > The Upload component requires a UploadFile as a value! > I want to use here a plain html input file and not one of tapestry > components! > If I replace >

Re: Setting contenttype of T5 form

2011-03-30 Thread Fernando Benjamin
Hi Howard, The Upload component requires a UploadFile as a value! I want to use here a plain html input file and not one of tapestry components! If I replace WITH It does change the contenttype of the form as I wanted, but this means I have to use UploadedFile, because its value is required in

Generating popup window after form success

2011-03-30 Thread Rich M
Hi, I'm wondering if there is a good strategy to create a popup window after a successful form submit. The concept here is to popup a Voucher/Coupon window for the user if they complete a successful purchase. I've researched the basics of the concept in terms of HTML forms. You can run some

T5 & Tap Ioc (beauty) - kudos!

2011-03-30 Thread Adam Zimowski
Today I'm more in love with Tapestry (5) than ever before. I had a milestone demo at work which went well, and could actually show a good portion of a re-written website running and working! I'm at the heights of my project development. I'm sure there are still few more of dark evenings loaded with

Re: T5: form validation with pre-existing errors

2011-03-30 Thread Adam Zimowski
Tapestry friends! Your silence combined with my milestone demo today only motivated me to stay up couple of nights in a row, fire off debugger and step into Tapestry source to get this solved. And so, amazing what can be done under the pressure from management and when your job possibly may be on

Re: [ANNOUNCE] tapx-prototype is back --- upgrade problem

2011-03-30 Thread Howard Lewis Ship
Caution: I just discovered a problem with Tapestry's client-side JavaScript code when used with Prototype 1.7. I believe Prototype's Object.keys() function is no longer tolerant of undefined. This breaks some of the Tapestry code for handling Zone updates. Temporarily, you should include the fol

[ANNOUNCE] tapx-prototype is back

2011-03-30 Thread Howard Lewis Ship
I've resurrected my tapx-prototype module, to patch Tapestry to Prototype 1.7 (and Scriptaculous 1.9.0). It's in my snapshot Maven repository: http://howardlewisship.com/snapshot-repository/ com.howardlewisship tapx-prototype 1.1-SNAPSHOT -- Howard M. Lewis Ship Creator of Apache Tape

Re: Tapestry 5 with Prototype 1.7

2011-03-30 Thread Howard Lewis Ship
I'll look into ressurecting tapx-prototype shortly with Prototype 1.7 and latest Scripaculous. On Tue, Mar 22, 2011 at 9:18 PM, David Rees wrote: > On Tue, Mar 22, 2011 at 4:43 PM, Kalle Korhonen > wrote: >> Agree... doesn't look like we have an issue open for it yet. There's >> the tapx-prototy

Re: SPAM filter for mailing list

2011-03-30 Thread Dmitry Gusev
I had this issue several times. On Wed, Mar 30, 2011 at 20:16, Jim O'Callaghan wrote: > Is anyone else having issues with the spam filter in use for the list - I'm > finding I have to send emails two or three times before they stop bouncing > back, and usually I end up just alternating between ht

Re: SPAM filter for mailing list

2011-03-30 Thread Thiago H. de Paula Figueiredo
I never had problems with the spam filter. I always send plain text e-mails. -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and instructor Owner, Ars Machina Tecnologia da Informação Ltda. http://www.arsmachina.com.br --

SPAM filter for mailing list

2011-03-30 Thread Jim O'Callaghan
Is anyone else having issues with the spam filter in use for the list - I'm finding I have to send emails two or three times before they stop bouncing back, and usually I end up just alternating between html, rich text, and finally plain text before it gets through, without changing the content or

RE: Logon notification

2011-03-30 Thread Jim O'Callaghan
Hi David, Is there something specific in the ApplicationListener approach you require?  I use TSS and have a login page that in its onSuccess method sends a redirect like so: @Inject private HttpServletResponse response; . . .      Object onSuccess() throws IOException      {

Re: Logon notification

2011-03-30 Thread David Uttley
Hi Peter, If it was as easy as what you suggest I wouldn't have bothered with the mailing list, this is a last resort I don't use these mailing lists lightly only when I start banging my head against a wall, I had already done the registering of the ApplicationListener. As for lack of detail I

Re: Logon notification

2011-03-30 Thread LLTYK
An HttpSessionListener... -- View this message in context: http://tapestry-users.832.n2.nabble.com/Logon-notification-tp6223363p6223518.html Sent from the Tapestry Users mailing list archive at Nabble.com. - To unsubscribe, e-ma

Re: Grid dynamically added columns and values

2011-03-30 Thread Androrion
Thanks a lot ! I don't know why it didn't occur to me the first time but now it works like a charm ! I simply added a constructor to my property conduit and gave it the category identifier. Thank you very much ! :D -- View this message in context: http://tapestry.1045711.n5.nabble.com/Grid-dynam

Re: Logon notification

2011-03-30 Thread P . Stavrinides
Hi David, Apart from the lack of details in your question, this is also hardly a Tapestry question. You should direct it to the Spring forums instead, but if this reply helps so be it: You will need in your applicationContext.xml to define a bean that will automatically start receiving events

Re: Grid dynamically added columns and values

2011-03-30 Thread Thiago H. de Paula Figueiredo
On Wed, 30 Mar 2011 10:56:37 -0300, Androrion wrote: My understanding is that the grid uses myPropertyConduit.get(myStatBean), however I can't get the category identifier in this method to access the "statistics" list. Am I wrong ? You need to pass this information yourself to your property c

Re: Grid dynamically added columns and values

2011-03-30 Thread Androrion
In fact I already looked in that direction, I tried to create my own PropertyConduit for the beanModel. However I couldn't go any further because of the get method of the propertyConduit. My understanding is that the grid uses myPropertyConduit.get(myStatBean), however I can't get the category ide

Logon notification

2011-03-30 Thread David Uttley
So do I have any takers for this problem? Somebody must be recording logins somewhere, I don't have to use Spring to do it. --Original message I am trying to get spring security to notify me of a successful logon using the Spring ApplicationListener. However, the ApplicationListener doesn'

Re: Grid dynamically added columns and values

2011-03-30 Thread Thiago H. de Paula Figueiredo
On Wed, 30 Mar 2011 10:10:30 -0300, Androrion wrote: Hi there ! Hi! I already searched the list for similar problems but only found questions and no solution :-( Search for BeanModel, PropertyModel and PropertyConduit. ;-) -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestr

Re: form for nested entity

2011-03-30 Thread sockmonster
Thanks Thiago, that worked a treat :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/form-for-nested-entity-tp4264623p4271479.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To un

Grid dynamically added columns and values

2011-03-30 Thread Androrion
Hi there ! For my first post here, I encounter the following problem : I've got stats datas to display in a grid, but the stats categories are dynamic. For exemple : Date - Category1 - Category2 - Category 3 - Total date1 - stat1 - 0 - stat3 - totalDate1 date2 - stat1 - stat2 - 0 - totalDate2 I

Re: Dynamic combo box - Tapestry 5.2.2

2011-03-30 Thread Geoff Callender
I think that's true for maven, by its convention. Robert, the source of confusion may be that JumpStart is built with Ant, which allows us to put js, tml, java, properties, etc. together under the java directory. On 29/03/2011, at 10:48 PM, LLTYK wrote: > The js file needs to be in the same pa

Re: Leaving the tapestry community

2011-03-30 Thread Geoff Callender
Inge, You'll be very missed, not least for the oh-so-useful ZoneUpdater! Good luck on making it back here soon. Geoff On 28/03/2011, at 11:50 PM, Inge Solvoll wrote: > Hi! > > In a couple of weeks, I'm leaving my current employer. You probably won't > hear from me for a while, since my new em

Re: Tapestry 5 with Prototype 1.7

2011-03-30 Thread antalk
I need to come back on this issue. Apparently it does NOT work ootb, i'm experiencing issues where eventlinks referencing a ZONE in a progressive display component do not get the zone parameter attached. I've traced it down to the following part of Tapestry.js: Line 333: Tapestry.ScriptManager.

[ANN] Tapestry 5.2.5 (maintenance release)

2011-03-30 Thread Igor Drobiazko
Hello all, the Tapestry team is pleased to announce the 5.2.5 maintenance release. We can now recommend that all users upgrade from 5.2.4 to 5.2.5. More details: http://tapestry.apache.org/2011/03/29/tapestry-525-maintenance-release.html Release notes: http://tapestry.apache.org/release-notes-525

Re: ascii code 153 (tm) not displaying properly

2011-03-30 Thread Nikola Milikic
> > btw,™ should work as well. And © should work too. Best, Nikola On Tue, Mar 29, 2011 at 10:05 PM, Paul Stanton wrote: > ™ works fine thanks Ulrich. > > > On 29/03/2011 10:42 PM, Ulrich Stärk wrote: > >> btw,™ should work as well. >> >> Uli >> >> On 29.03.2011 13:15, Yohan Yudanara wrote: