Re: [T5] issue with coercion in loop (not in form)

2010-10-06 Thread Josh Canfield
> encoder="callTrackEncoder" volatile="true" formState="none"> Your loop calls the setter for the value parameter on every iteration. If the types do not match then tapestry happily tries to make a match and coerce them for you. For instance, if your source is List and your value is Long then Int

Re: [T5.2] Live class reloading not working with jetty

2010-10-06 Thread Michael Gentry
I use Maven to run Jetty. This works inside Eclipse with the M2Eclipse plugin and also directly from the command-line. You get to specify which version of Jetty you want to use and JNDI also works (just specify Jetty Plus). I've pretty much abandoned Run Jetty Run at this point. mrg On Wed, O

Re: [T5.2] Live class reloading not working with jetty

2010-10-06 Thread Igor Drobiazko
I'm using run-jetty-run and there is no need for any configuration. Just install it and start your web app. The only problem is that JNDI is not supported. On Wed, Oct 6, 2010 at 11:35 AM, Christian Köberl < tapestry.christian.koeb...@gmail.com> wrote: > > I think RunJettyRun is also a fork of Je

Re: Dynamically loading a component

2010-10-06 Thread Omar Carvajal
Peter, Thanks for your response. The reason why I wanted to dynamically load a component was because I need to preload list pages for certain entities in my application. So I have a certain "central" page that the user loads once and these list pages need to be cached on the browser, but I somet

RadioGroup and default validation binding

2010-10-06 Thread Ciaran Wood
Hi, I was doing some work the other day where I had a radio group where the user could not leave the input blank (i.e. they had to choose an option). I added a @Validate("required") annotation to the property that the radio group was reading from, thinking it should pick that up like other comp

Re: Injecting Tapestry Services into Spring beans

2010-10-06 Thread Kai Weber
* Jeshurun Daniel : > Ok please ignore that it was just me being stupid. I got it working > now. Thanks. Could you tell us, what you had to do to got it working? Kai - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.o

[T5] issue with coercion in loop (not in form)

2010-10-06 Thread Ben Dinnerville
hi All, I am getting a coercion error when using 5.1.0.5 and a loop - not inside a form. The strange thing is, I have provided both a ValueEncoder and contributed a Coercion to no avail. Here is the start of the error: BeginRender[calltrack/Services:loop]: Failure writing parameter 'value'

Re: [T5.2] Live class reloading not working with jetty

2010-10-06 Thread Christian Köberl
Howard Lewis Ship wrote: > > What's the difference between RunJettyRun and EclipseJetty? > EclipseJetty is a fork of http://jettylauncher.sourceforge.net/ (Jetty Launcher is not maintained anymore and doesn't work with recent Eclipse versions). EclipseJetty has some magic in it, which excludes

Re: [T5.2] Live class reloading not working with jetty

2010-10-06 Thread Howard Lewis Ship
What's the difference between RunJettyRun and EclipseJetty? On Wed, Oct 6, 2010 at 12:11 AM, Christian Köberl wrote: > > Is this a problem of  runjettyrun? > > We're using http://eclipse-jetty.sourceforge.net/ (my fork of Jetty Runner) > with Eclipse Galileo and m2eclipse. Live reloading works fo

RE: [T5.2] Live class reloading not working with jetty

2010-10-06 Thread Christian Köberl
Is this a problem of runjettyrun? We're using http://eclipse-jetty.sourceforge.net/ (my fork of Jetty Runner) with Eclipse Galileo and m2eclipse. Live reloading works for us with this config. -- View this message in context: http://tapestry-users.832.n2.nabble.com/T5-2-Live-class-reloading-no

Re: [T5.2] Constructor issue

2010-10-06 Thread Michal Gruca
Howard Lewis Ship wrote: > > Remember that you can place @Inject on the constructor that should be > used if there's any ambiguity. > That is what I was looking for. Thanks :) and +1 for adding that to FAQ :) -- View this message in context: http://tapestry-users.832.n2.nabble.com/T5-2-Const