Tapestry scheduler specify exact time

2012-06-26 Thread George Christman
Hello, I was wondering if you could specify an exact time for the Tapestry Scheduler to run rather than simple intervals. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-scheduler-specify-exact-time-tp5714107.html Sent from the Tapestry - User mailing list archive

Re: Eclipse: Can run against maven jar, can't run against local project

2012-06-26 Thread Kalle Korhonen
On Tue, Jun 26, 2012 at 12:00 PM, Lance Java wrote: >> if it's your own application, what's the point of avoiding @SubModule > I wasn't sure what would happen when running against a jar. Would the > submodule be loaded twice? (once for @SubModule, once for manifest) No, that's all good. Kalle -

Re: Tapestry Tree Links with parameter

2012-06-26 Thread Lance Java
I didn't take the time to fully understand your code but there's a fairly extensive tree example at jumpstart http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/treefromdatabasewithzones You can generate event links etc by setting the "label" block parameter of a tree -- View this mes

Re: Eclipse: Can run against maven jar, can't run against local project

2012-06-26 Thread Lance Java
> if it's your own application, what's the point of avoiding @SubModule I wasn't sure what would happen when running against a jar. Would the submodule be loaded twice? (once for @SubModule, once for manifest) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Eclipse-Can-run-

Tapestry Tree Links with parameter

2012-06-26 Thread tapestry.kung.fu
I am having trouble passing parameters to page link while creating Tree with click-able links. This is how my code look like. 1) I have Pojo ValueWrapper which has two member variables label and pageName. Constructor of ValueWrapper takes label and pagename. I have one RootNode with ValueWrapper(

Re: Eclipse: Can run against maven jar, can't run against local project

2012-06-26 Thread Kalle Korhonen
On Tue, Jun 26, 2012 at 2:04 AM, Lance Java wrote: > I thought of this approach but I'd be scared that I'd accidentally commit the > change to git (which I would never want to do). I use @SubModule regularly exactly for the case when both the library and the application is in active development a

Re: AJAX Events

2012-06-26 Thread Ray Nicholus
Have a look at the RequestParameter annotation. On Tue, Jun 26, 2012 at 11:05 AM, Gep wrote: > Sorry to dig out this post, but I'm having the exact same issue. > > After having a look at : > http://samroyale.blogspot.fr/2009/11/controlling-ajax-in-tapestry.html I > tried to use this trick, but I

Re: AJAX Events

2012-06-26 Thread Gep
Sorry to dig out this post, but I'm having the exact same issue. After having a look at : http://samroyale.blogspot.fr/2009/11/controlling-ajax-in-tapestry.html I tried to use this trick, but I failed. In my page.java, I create a link this way: With a simple OnInc method in the same page: Wh

Re: How to create a tapestry - OSGI bundle project

2012-06-26 Thread Lenny Primak
This is more of a question for OSGi and looking at their documentation. This isn't really a tapestry question at all. On Jun 26, 2012, at 2:17 AM, karthi wrote: > Hi, > > Using the below url sample project for tapestry, spring, hibernate > http://wiki.apache.org/tapestry/Tapstry5First_proj

Re: JSON request construct in Tapestry

2012-06-26 Thread bogdan_cm
Thank you for the reply. -- View this message in context: http://tapestry.1045711.n5.nabble.com/JSON-request-construct-in-Tapestry-tp5714075p5714095.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To un

Re: exception in IE on ajax request

2012-06-26 Thread Ray Nicholus
Thanks for the info. I have added my votes to these cases. On Tue, Jun 26, 2012 at 1:40 AM, Jochen Berger wrote: > Oh, I should have continued reading, sorry. Then, it's most likely also > TAP5-1882/TAP5-1907. > > Am 26.06.2012 05:58, schrieb Ray Nicholus: > >> Changing the following line in the

Overriding/Decorating/Advising FieldValidatorSource

2012-06-26 Thread Emmanuel DEMEY
Hi everyone !! Since this morning, I have some problems with the FieldValidatorSourceImpl. In fact, I would like to override it, by using the ClientId of the field instead of the Tapestry ID for the keys of the messages (the error message and the constraint). For doing that, I decorated this servi

Re: How to create a tapestry - OSGI bundle project

2012-06-26 Thread karthi
Any one help me? -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-create-a-tapestry-OSGI-bundle-project-tp5714086p5714091.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To

RE: Eclipse: Can run against maven jar, can't run against local project

2012-06-26 Thread Lance Java
I thought of this approach but I'd be scared that I'd accidentally commit the change to git (which I would never want to do). -- View this message in context: http://tapestry.1045711.n5.nabble.com/Eclipse-Can-run-against-maven-jar-can-t-run-against-local-project-tp5714087p5714090.html Sent from t

RE: Eclipse: Can run against maven jar, can't run against local project

2012-06-26 Thread Guerin Laurent
Hi Lance, you can link your component lib module with you webapp with @SubModule annotation. For example, in your AppModule of your webapp, add : @SubModule(MyLibraryModule.class) public class AppModule >From the documentation : @SubModule Attached to a module class, this annotation identifies

Re: Eclipse: Can run against maven jar, can't run against local project

2012-06-26 Thread Lance Java
I have a workaround which is to use a system property -Dtapestry.modules=foo.bar.MyModule I'd prefer it if tapestry could find my manifest file (located in src/main/resources/META_INF/MANIFEST.MF) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Eclipse-Can-run-against-mave

Eclipse: Can run against maven jar, can't run against local project

2012-06-26 Thread Lance Java
I have two maven projects in eclipse using the m2e plugin. Project A is a component library (jar) which includes a "Tapestry-Module-Classes" entry in the manifest. Project B is a webapp which uses Project A. Case 1: When I close Project A in eclipse. I am able to run the war (Project B) with no w

How to create a tapestry - OSGI bundle project

2012-06-26 Thread karthi
Hi, Using the below url sample project for tapestry, spring, hibernate http://wiki.apache.org/tapestry/Tapstry5First_project_with_Tapestry5,_Spring_and_Hibernate, I have created one of that. I integrated Postgres db and using tapestry through spring retrieved the db values successfully by hibern