Re: Problem for write actionLink with markup writer

2010-12-16 Thread Thiago H. de Paula Figueiredo
On Thu, 16 Dec 2010 13:05:31 -0200, Cucchietti Denis denis.cucchie...@atosorigin.com wrote: Hi all ! Hi! I've a question : it is possible to write an actionLink with a MarkupWriter ? Technically speaking, no, because you can only declare component instances in templates. In addition,

RE: Problem for write actionLink with markup writer

2010-12-16 Thread Cucchietti Denis
décembre 2010 16:32 À : Tapestry users Objet : Re: Problem for write actionLink with markup writer On Thu, 16 Dec 2010 13:05:31 -0200, Cucchietti Denis denis.cucchie...@atosorigin.com wrote: Hi all ! Hi! I've a question : it is possible to write an actionLink with a MarkupWriter

Re: Problem for write actionLink with markup writer

2010-12-16 Thread Thiago H. de Paula Figueiredo
On Thu, 16 Dec 2010 13:39:21 -0200, Cucchietti Denis denis.cucchie...@atosorigin.com wrote: Thanks Thiago, Im trying to create a tree and for each node a menu. In this menu I have this action delete and I would like catch this event in order to delete the node from my page. You need

RE: Problem for write actionLink with markup writer

2010-12-16 Thread Cucchietti Denis
Ok Thiago i will try it, thanks !! -Message d'origine- De : Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] Envoyé : jeudi 16 décembre 2010 16:49 À : Tapestry users Objet : Re: Problem for write actionLink with markup writer On Thu, 16 Dec 2010 13:39:21 -0200, Cucchietti Denis

RE: Problem for write actionLink with markup writer

2010-12-16 Thread Cucchietti Denis
16 décembre 2010 16:49 À : Tapestry users Objet : Re: Problem for write actionLink with markup writer On Thu, 16 Dec 2010 13:39:21 -0200, Cucchietti Denis denis.cucchie...@atosorigin.com wrote: Thanks Thiago, Im trying to create a tree and for each node a menu. In this menu I have this action

Re: Problem for write actionLink with markup writer

2010-12-16 Thread Thiago H. de Paula Figueiredo
On Thu, 16 Dec 2010 14:09:31 -0200, Cucchietti Denis denis.cucchie...@atosorigin.com wrote: Thanks Thiago it's works !! Yeah! Solution : writer.writeRaw(a id='delete' href=' + componentResources.createEventLink(delete, childLevel.getId()) + '); But use element() instead writeRaw ;-)