CSV and grid component

2009-08-21 Thread Thibaut Gadiolet
Hi folks, I am sorry for bothering you if it is not necessary but I am looking for a function allowing to export a grid component to a CSV file. I know that Thiago wrote something about that but I didn't find it on Nabble It could be nice to add such a function to the grid component. Does it

Re: again on webservices

2009-07-21 Thread Thibaut Gadiolet
Hi folks, I was browsing nabble looking for something about Axis2 integration when I found this topic. So here is my question: I have a web application based on Tapestry/Hibernate/Spring built by Maven. My boss asked me to create a new Java Class and make it a Web Service. So Andrea, how did you

Re: How to show a Select component in a zone ?

2009-06-12 Thread Thibaut Gadiolet
ere a way to show my Select component from an actionLink, without rewrite javascript code? (using FormFragment) Thibaut On Thu, Jun 11, 2009 at 10:20 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > Em Thu, 11 Jun 2009 20:21:23 -0300, Thibaut Gadiolet < > thibau

Re: How to show a Select component in a zone ?

2009-06-11 Thread Thibaut Gadiolet
= > http://www.winfonet.eu > > - original Nachricht > > Betreff: How to show a Select component in a zone ? > Gesendet: Fr, 12. Jun 2009 > Von: Thibaut Gadiolet > > > Hi folks, > > > > Sorry for bothering you again but I want to clarify some

How to show a Select component in a zone ?

2009-06-11 Thread Thibaut Gadiolet
Hi folks, Sorry for bothering you again but I want to clarify something with tapestry and Ajax. I want to show a Select in a zone. *I have an actionLink:* Object onActionFromShowZone() { return organizationZone.getBody(); } *my tml zone:* Everything wor

Re: Authentification in Tapestry

2009-06-03 Thread Thibaut Gadiolet
lication/json"); > writer.write("{'redirectURL':'" + loginPageUrl + "'}"); > writer.close(); > > On Thu, Jun 4, 2009 at 7:30 AM, Thiago H. de Paula Figueiredo > wrote: > > Em Wed, 03 Jun 2009 16:13:18 -0300, Thibaut Gadiolet > >

Re: Authentification in Tapestry

2009-06-03 Thread Thibaut Gadiolet
OK, I stop using a full T5 solution to handle authentication/authorization. I am using ACEGI with a basic configuration, you can easily integrate it to your T5 projects, It's not as heavy as I thought, and it turned out to be very efficient. But if someone gets a better solution full T5, I'm open

Re: @SessionState error

2009-06-01 Thread Thibaut Gadiolet
Thank you so much ! It works perfectly right now ! On Mon, Jun 1, 2009 at 5:06 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > Em Mon, 01 Jun 2009 18:04:01 -0300, Thibaut Gadiolet < > thibaut.gadio...@gmail.com> escreveu: > > Hi folks, >>

@SessionState error

2009-06-01 Thread Thibaut Gadiolet
Hi folks, As soon as I put the annotation @SessionState in my application, I get an error. *here is a sample of code from home.java* *@SessionState private String userName; public String getUserName() { return userName; } public void setUserName(String userName) {

Authentification in Tapestry

2009-05-21 Thread Thibaut Gadiolet
Hi, I am creating a web application using Tapestry for the GSoC. I was wondering what is best way to fit security requirements of a mere application (login/password/roles). How to keep and pass the user data from page to page ? Should I use Tapestry mechanism to check access rights ? Like OnActi