Re: "OnEvent" no response

2009-03-16 Thread Zenberg Ding
Thanks :) I would suggest you to look at the source of onevent mixin (not onevent annotation) in t5commons project. Thanks, DH - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mai

Re: "OnEvent" no response

2009-03-16 Thread DH
I would suggest you to look at the source of onevent mixin (not onevent annotation) in t5commons project. Thanks, DH - Original Message - From: "Zenberg Ding" To: "Tapestry users" Sent: Monday, March 16, 2009 2:00 PM Subject: Re: "OnEvent" no respons

Re: "OnEvent" no response

2009-03-15 Thread Zenberg Ding
generate the base url in xtree component:componentResources.createEventLink("click") to get http://localhost/login.xtree:click, and append the value 11/22 by js code. Hope it helps. Thanks, DH - Original Message - From: "Zenberg Ding" To: "Tapestry users" Sent: Monday, March 16,

Re: "OnEvent" no response

2009-03-15 Thread DH
pend the value 11/22 by js code. Hope it helps. Thanks, DH - Original Message - From: "Zenberg Ding" To: "Tapestry users" Sent: Monday, March 16, 2009 11:45 AM Subject: Re: "OnEvent" no response >I still confused with how to fire javascript objec

Re: "OnEvent" no response

2009-03-15 Thread Zenberg Ding
Thanks, DH - Original Message - From: "Ding Zenberg" To: Sent: Monday, March 16, 2009 10:11 AM Subject: "OnEvent" no response Hi all, Here is the case, I put one component named "xtree" on start page, then I wrote on method to receive events from this compo

Re: "OnEvent" no response

2009-03-15 Thread Zenberg Ding
fire the 'click' event in your xtree component? This 'click' is not the one 'click' in html dom. Thanks, DH - Original Message - From: "Ding Zenberg" To: Sent: Monday, March 16, 2009 10:11 AM Subject: "OnEvent" no response Hi all, He

Re: "OnEvent" no response

2009-03-15 Thread DH
How do you fire the 'click' event in your xtree component? This 'click' is not the one 'click' in html dom. Thanks, DH - Original Message - From: "Ding Zenberg" To: Sent: Monday, March 16, 2009 10:11 AM Subject: "OnEvent" no res

Re: "OnEvent" no response

2009-03-15 Thread Thiago H. de Paula Figueiredo
Em Sun, 15 Mar 2009 23:11:02 -0300, Ding Zenberg escreveu: @OnEvent(value="click", component="xtree") void onTreeClick() { System.out.println("tree clicked ..."); } but there is no output expected. I want to know where's pro

"OnEvent" no response

2009-03-15 Thread Ding Zenberg
Hi all, Here is the case, I put one component named "xtree" on start page, then I wrote on method to receive events from this component. @OnEvent(value="click", component="xtree") void onTreeClick() { System.out.println("tree clicked

Re: about "OnEvent" no response

2009-03-15 Thread Geoff Callender
Please start a new thread for this new topic. On 16/03/2009, at 4:01 AM, Zenberg Ding wrote: Hi all, Here is the case, I put one component named "xtree" on start page, then I wrote on method to receive events from this component. @On

about "OnEvent" no response

2009-03-15 Thread Zenberg Ding
Hi all, Here is the case, I put one component named "xtree" on start page, then I wrote on method to receive events from this component. @OnEvent(value="click", component="xtree") void onTreeClick() { System.out