Re: t5: T5 friendly e commerce software?

2009-07-03 Thread Angelo Chen
Hi Lutz, toplicht.de looks good, that's the kind of ecommerce site I'm thinking about, yes I'd like to contribute as long as it is already in T5, I know nothing about t4 or earlier. Angelo Lutz Hühnken wrote: > > Hi Angelo, > > what kind of e-commerce software are you thinking of? > > If it

Re: Decoration of setupRender, beginRender from a service

2009-07-03 Thread Thiago H. de Paula Figueiredo
On Fri, Jul 3, 2009 at 11:30 AM, Sergey Didenko wrote: > Hi, Hi! > is it possible to make something like this? This looks like a mixin, but mixins don't decorate components nor pages. I suggest you to take another approach: create an annotation and write a ComponentMethodAdvice that decorates m

Decoration of setupRender, beginRender from a service

2009-07-03 Thread Sergey Didenko
Hi, is it possible to make something like this? Component.java: @Inject DecoratingService service; void setupRender() { logger.info(" I'm not the first... "); } DecoratingService.java : void decorateSetupRender() { // somehow decorate hosting component setupRender() logger.info(

Re: Tapestry not suitable for this environment?

2009-07-03 Thread Massimo Lusetti
On Mon, Jun 29, 2009 at 1:16 PM, Vjeran Marcinko wrote: > Sorry for not explaiining the thing clear enough... Delegate and blocks could help here. -- Massimo http://meridio.blogspot.com - To unsubscribe, e-mail: users-unsubs

Re: T5: Include Google Analytics Code

2009-07-03 Thread Sergey Didenko
May be it's related to these javascript bugs: http://www.nabble.com/-T5.1.0.5--%27Tapestry%27-is-undefined-JavaScript-error-on-form-submit-tp23834056p23839494.html "TAP-712: Form component: javascript error in IE when submitting form" - Strange, I can't find this discussion on nabble, the summary

Re: t5: T5 friendly e commerce software?

2009-07-03 Thread Lutz Hühnken
Hi Angelo, what kind of e-commerce software are you thinking of? If it is a straight-forward online shop - we built www.toplicht.de about two and a half years ago with Tapestry and ever since we did, we wanted to open source the code as a an open source e-commerce project (the name would be "Coki

T5: Include Google Analytics Code

2009-07-03 Thread moritzgilsdorf
Hi, I have a problem with using Google Analytics in my project. I've added the GA scripts in my Layout.tml just before the closing body tag. When rendering the Page, Tapestry inserts between the GA scripts and the the following code:

Re: [Tapestry Central] Caught between Two IDEs

2009-07-03 Thread Ulrich Stärk
I'd already be happy with a Tapestry DTD file for use with Eclipse's XML Editor On 03.07.2009 09:47 schrieb Ivano Luberti: The 3.3 version was clearly bugged with a memory leak they have never solved. This is objective. Now I use 3.4 and I'm an happy man: I don't know what I could ask more from

Re: [Tapestry Central] Caught between Two IDEs

2009-07-03 Thread Ivano Luberti
I'have really poor knowledge of javascript but have you evere tried Aptana ? It seems huge but powerful. Howard Lewis Ship ha scritto: > Less is more with Eclipse. > At least it has a reasonable XML editor built in now, and RunJettyRun gets > the job done. How much more do you need? A better Jav

Re: [Tapestry Central] Caught between Two IDEs

2009-07-03 Thread Ivano Luberti
The 3.3 version was clearly bugged with a memory leak they have never solved. This is objective. Now I use 3.4 and I'm an happy man: I don't know what I could ask more from an IDE except for a useful Tapestry plugin ;-) Angelo Chen ha scritto: > I got two reasons not using Eclipse: > > 1) crashes

Re: T5: Enabling disabled datefield

2009-07-03 Thread Przemysław Wojnowski
It works. Thank you very much! > Hi, > > Because you set t:disabled="true" to the datefield statically, so in the > form submit process, its value would not be updated always. > > You can dynamically set the 'disabled' like t:disabled="!dateEnabled", then > you will get the value. > > DH > h