Re: Jasper Reports integration module-GSOC 2010

2010-04-06 Thread Ulrich Stärk
Welcome on this list Charith. So what exactly are you planning to do? What will your integration look like? Please discuss your more concrete ideas. Just saying "I'll do a JasperReports integration because JasperReports is nice" just is not enough. You should think of how the integration is sup

Embed an installation application in your tapestry 5 application

2010-04-06 Thread Christophe Cordenier
Hi, For Tapestry developers who are interested in a easy way to build a configuration wizard for their Tapestry 5 applications, we have started a new project called 'tapestry5-installer' that allows to load the 'real' application after the configuration is finished. This solution is currently und

Jasper Reports integration module-GSOC 2010

2010-04-06 Thread Charith Madusanka
i'm Create JasperReports integration GSOC 2010 project. my idea was writing JasperReports integration module to tapesty. it will help to developer make easer do all report generation in tapsrty. Jasper is very nice and it have following advantages, - easy to use - you will find lots of supp

AjaxFormLoop and Radio button

2010-04-06 Thread raulmt
Hi, I'm trying to use an AjaxFormLoop for rows that have a textfield and a radio button. Outside the AjaxFormLoop I have a RadioGroup component to "contain" all the Radio. But when I click the addRowLink I have an error because RadioContainer is not in the environment (which is normal because Rad

Re: Select with CustomTO

2010-04-06 Thread Thiago H. de Paula Figueiredo
On Tue, 06 Apr 2010 17:32:04 -0300, Michael Gentry wrote: Hi Thiago, Hi! I'm curious as to why you think putting a List in a Session is very wrong? Especially since I do it often. :-) Lists themselves aren't problematic, but the amount of memory used per user is. -- Thiago H. de P

Re: Select with CustomTO

2010-04-06 Thread Michael Gentry
Hi Thiago, I'm curious as to why you think putting a List in a Session is very wrong? Especially since I do it often. :-) Thanks! mrg On Tue, Apr 6, 2010 at 8:29 AM, Thiago H. de Paula Figueiredo wrote: > That approach, in my humble opinion, is plain wrong. You have to retrieve a > list of

Zone updating / caching

2010-04-06 Thread Jim O'Callaghan
Is there a convenient way of ensuring a zone updates from the server upon browser back or is something hackish in onLoad required? I found this previous related query below but don't want to completely abandon the browser cache for multiple pages / image heavy areas etc.. http://www.nabble.com/T

Re: Select with CustomTO

2010-04-06 Thread Thiago H. de Paula Figueiredo
On Tue, 06 Apr 2010 13:38:38 -0300, Benny Law wrote: Both of these Impl classes are in an internal package inside Tapestry. I have always wondered whether it is considered good practice to instantiate these internal classes directly in our code? You're right. Tapestry misses some public u

[Tapestry Central] Meta-Programming Java with Tapestry

2010-04-06 Thread Howard
A significant amount of what Tapestry does is meta programming: code that modifies other code. Generally, we're talking about adding behavior to component classes, which are transformed as they are loaded into memory. The meta-programming is the code that sees all those annotations on methods and f

Re: Select with CustomTO

2010-04-06 Thread Benny Law
> > I took a look to: >> http://wiki.apache.org/tapestry/Tapestry5HowtoSelectWithObjects >> > > That approach, in my humble opinion, is plain wrong. You have to retrieve a > list of objects when you need just one of them (wrong) or put a list in a > session (very wrong). Create one instance of Opti

Re: ServiceOverride recursion issue - T5.2

2010-04-06 Thread Andrus Adamchik
FWIW, when I got back to the override issue after a few days of unrelated work (mostly expanding the registry with a few unrelated services), suddenly this started to work: @SubModule( { ServicesModule.class }) public class AppModule { public static void contributeServiceOverride(

Re: Possible memory leak in zone update?

2010-04-06 Thread Jochen Berger
Andreas, sorry for not responding for so long, but I have been busy with a lot of other stuff. Andreas Andreou wrote: > Chrome's Developer Tools (ctrl+shift+i) have a "profiles" tab. > Once selected, you'll find a "Take heap snapshot" at the bottom... > press it once at the start, then again at t

Res: [T5.1] Can I manually use the IoC container to obtain Objects?

2010-04-06 Thread Kristian Marinkovic
right... classes that are not controlled by Tapestry IoC cannot use Tapestry IoC dependency injection. therefore you have to switch to programmatic configuration. g, kris Von:Everton Agner An: Tapestry users Datum: 06.04.2010 14:50 Betreff:Res: Res: [T5.1] Can I manually u

Res: Res: [T5.1] Can I manually use the IoC container to obtain Objects?

2010-04-06 Thread Everton Agner
So, if I configure at Runtime - in my own HibernateConfigurer (which I already have it, btw) - the listeners are added to the Tap IoC registry? Umm... I'll try it, it sounds pretty good. Thanks :) - Everton De: Kristian Marinkovic Para: Tapestry users Envi

Res: [T5.1] Can I manually use the IoC container to obtain Objects?

2010-04-06 Thread Kristian Marinkovic
when using tapestry-hibernate you can contribute your own HibernateConfigurer which has access to the Hibernate Configuration. then you can add an EventListener, build by Tapestry IOC, to the configuration. i guess you'll have to do it akin. or (not a clean solution) you set the tapestry ioc reg

Re: Select with CustomTO

2010-04-06 Thread Thiago H. de Paula Figueiredo
On Tue, 06 Apr 2010 08:54:33 -0300, Santiago W. Fernandez Lorenzo wrote: Hello. Hi! I took a look to: http://wiki.apache.org/tapestry/Tapestry5HowtoSelectWithObjects That approach, in my humble opinion, is plain wrong. You have to retrieve a list of objects when you need just one of t

Res: [T5.1] Can I manually use the IoC container to obtain Objects?

2010-04-06 Thread Everton Agner
Anything? De: Everton Agner Para: Tapestry Users Enviadas: Segunda-feira, 5 de Abril de 2010 15:42:55 Assunto: [T5.1] Can I manually use the IoC container to obtain Objects? Hi, As I've said before, I'm integration Envers in my T5.1 Application, and everyth

Re: submit form on Safari and Opera doesn't work

2010-04-06 Thread LiborGMC
You're complicating your implementation beyond needed. What you're trying is to do two requests in sequence: one to submit the form, other to handle an event. This is very error-prone, as it relies on the ordering of the arrival of the. Just use a LinkSubmit: the form will be submitted and

Select with CustomTO

2010-04-06 Thread Santiago W. Fernandez Lorenzo
Hello. I'm having trouble making a *select based on CustomTOs.* I explain myself: I have three entities: - *User*(idUser, name, surname, phone,...) - *Proyect*(idProyect, name, city,) - *Member*(idMember, idUser, idProyect, ...) I want to* make a select using user.name as label and member.i

problems with client validation Internet Explorer 8 - no background images

2010-04-06 Thread Kiss Izolda
Hello, I have set the form parameter: clientValidation=true and defined validations for the fields, like this:txtRowsPerPage-required-message=You must provide a value for: rows per page! when the validation fails the following div appears:You must provide a value for: rows per page! Using Intern

Re: Unit testing with tapestry 5.1 and spring

2010-04-06 Thread Paul Field
> I'm looking at the Testify framework, and while it looks promising, it still > doesn't connect up the spring layer. > > It also puts a /foo in front of every asset and page link on my page. > Frustrating The "/foo" is a default context that Tapestry adds when using its testing features.