Re: T5.3: form/submit stop working (solved)

2012-04-01 Thread nazarhussain_s
Is this issue currently existing in Tapestry 4.0 Please let me know as currently In our project , we are using Tapestry 4.0 Regards Nazar -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-3-form-submit-stop-working-tp5060324p5611616.html Sent from the Tapestry - User m

Custom Component - @BeforeRenderBody not rendering stuff

2012-04-01 Thread Chris Mylonas
Hi Tapestry List, After spending a few hours with render phases and all that comes with it (heartbeat/resources) I'm in a bit of a jam that I don't know where to go next. I'm setting up a basic component called PhoneView that receives an ArrayList of Phone objects...similar to the Tree example o

Q? about render phase of grid

2012-04-01 Thread Chris Mylonas
Good Morning Tapestry List, How come the Grid component doesn't have @Setup/Begin/CleanupRender annotations? BTW, I'm mucking around with my first component and during @SetupRender phase I have no data and return false to jump directly to @CleanupRender - which outputs my div saying "There is

Re: Sonotype Security Brief

2012-04-01 Thread based2
* May be http://tapestry.apache.org/integrating-with-spring-framework.html (2.5.6 ==> 2.5.6.SEC02) > http://www.springsource.com/security/cve-2010-1622 http://en.securitylab.ru/nvd/395057.php A secchecker plugin for gradle/maven could be created around a CVE check list: org.apache.wicket:wicket W

Re: JQuery Calendar problem.

2012-04-01 Thread ksrijith
I'm sorry.. I thought you are using http://tapestry5-jquery.com Tapestry5 JQuery library . You can use that instead of adding Jquery separately to replace the prototype components with JQuery based components. You can try that out and see if you are going to be using JQuery in your project.

Re: JQuery Calendar problem.

2012-04-01 Thread ksrijith
If you are not using Prototype components you can suppress them by adding the following to the AppModule.contributeFactoryDefaults configuration.override(JQuerySymbolConstants.SUPPRESS_PROTOTYPE, "true"); This would allow usage of only JQuery components instead of Prototype ones. - -- Don'

Re: JQuery Calendar problem.

2012-04-01 Thread ksrijith
Can you try as shown below: and in the java: @Property @Persist private Date testDate; I think you need to make the property as @Persist but you could try it without it as well and see if it works or not. - -- Don't Forget to Rate -- View this message in context: http://tapestry.1045711.n

Lightweight TapestryTools update site

2012-04-01 Thread Gavin Lei
Hi all, I have finished basic auto-complete feature for Eclipse XML editor based lightweight TapestryTools, and create update site for it. If you are interested, you can find its install guide here[1] (so easy to install, in fact) and have a trial of it. I will continue with its development job in

Re: How to define a "private" service (a service only for another service)

2012-04-01 Thread fmaylinch
Howard Lewis Ship wrote > > In fact, in functional programming (such as Clojure) all data is > "public" (but immutable) and most functions are also public. > (Do you mean (making everything public) is the way to go) ? ;) -- View this message in context: http://tapestry.1045711.n5.nabble.com

Re: Mixing prototype and JQuery based components?

2012-04-01 Thread François Facon
Your assumptions are correct. mixing components should work and you don't need to rewrite your existing components. I know some applications that use lib based and prototype and tapestry5-jquery. SUPPRESS_PROTOTYPE=false provides a kind of backward compatibility. 2012/4/1 Lenny Primak : > I see,