Re: What is your tapestry project setup like (build tool/ide)

2012-01-15 Thread Bård Magnus Kvalheim
hi, * We have a multi module maven project(s). * Use eclipse with m2e plugin. * m2e plugin resolves workspace artifacts * Use jetty to test apps. maven build, jetty:run from 'run configuration' We don't use any specific tapestry plugins. All about conventions so CTRL+SHIFT+R(/T) works well Howev

Re: What is your tapestry project setup like (build tool/ide)

2012-01-15 Thread Kalle Korhonen
I/we use mostly maven and Eclipse with m2eclipse. Since the 0.9.9 version of m2eclipse from almost two years ago I've never had an issue with it. m2eclipse keeps project configuration in sync with Maven so I don't have to maintain multiple environments. I've tried out the existing Tapestry integrat

Re: What is your tapestry project setup like (build tool/ide)

2012-01-15 Thread Rural Hunter
I use netbeans and never used maven/gradle. I create normal netbean's web project and set up Tapestry things manually since Tapestry is quite simple to set up comparing with other frameworks. Actually there is almost no set up since I always need to create java/tml file in the right package/dir

What is your tapestry project setup like (build tool/ide)

2012-01-15 Thread Alex Kotchnev
I was wondering if folks would be willing to share how in general their tapestry projects are set up in terms of build setup and IDE usage ? With T5 it seems that most tutorials point to starting up w/ a Maven project and going from there. After you initially set up your project - did you keep goin

ActivateRequestParameter

2012-01-15 Thread Jochen Frey
Hi! I am using a form to get e-mail signups into salesforce.com. This mechanism requires to pass a callback URL which salesforce redirects the browser to on completion of the action. I want this callback to have the signup email as a query parameter: ... /thanks?email=joe%40gmail.com

Re: Event propagation

2012-01-15 Thread bhorvat
Hi, Thank you for fast response and sorry for slow on my side (been busy lately). I have implemented AjaxResponseRenderer and it worked perfectly. I agree that it may not be the best design that component change something on the outside, which is why this approach works great. I would just cat

Re: T5.3.1 using jQueryMobile

2012-01-15 Thread françois facon
Hi, We did some test on https://github.com/got5/tapestry5-jquery-mobile. but ajax form validation and the request for page rendering through ajax don't make the use of internal page easy. for the moment our small demo https://github.com/got5/techforum only use external page. Any suggestion is

Re: [T5.3 beta 2] Using Tapestry-Spring-Security with 5.3?

2012-01-15 Thread TNO
That's a great news. Do you always need a repositroy ? Thomas Le 11/01/2012 13:44, antalk a écrit : > Hi all, > > I'm in the process of upgrading our webapps to Tap 5.3.x and we use this > library for our authentication process. I'm happy to announce that i've > updated the 3.0.0 trunk of tapest

Re: remove cache

2012-01-15 Thread Taha Hafeez Siddiqi
Hi As Thiago always says, "Never never never initialize an instance variable in its declaration in case of a page/component/mixin" use setupRender phase (@SetupRender) for initializing instance variables in case of a components/mixins and onActivate()(@OnEvent(EventConstants.ACTIVATE) in case

remove cache

2012-01-15 Thread csckid
I have a table I am populating the table from the java file @Property private ArrayList prescriptionResult = new ArrayList(); public ArrayList getPrescriptionAddedToGrid() { return *prescriptionResult*; } void onSuccessFromAddToGrid() { Medicine medicineTemp = new