Re: Creating DirectLink using DirectService

2006-10-25 Thread Karthik N
out of sheer curiosity. when you programmatically create the direct link, how will you also create the associated HTML for the anchor tag, and bind that HTML to the DirectLink created? Can you post your code snippet once done, please?

Re: Creating DirectLink using DirectService

2006-10-25 Thread andyhot
; > To: "Tapestry users" > Sent: Wednesday, October 25, 2006 3:42 PM > Subject: Re: Creating DirectLink using DirectService > > >> IIRC, a listener is really an instance of >> org.apache.tapestry.IActionListener >> >> Tapestry (automagically) cre

Re: Creating DirectLink using DirectService

2006-10-24 Thread gant
: Wednesday, October 25, 2006 3:42 PM Subject: Re: Creating DirectLink using DirectService IIRC, a listener is really an instance of org.apache.tapestry.IActionListener Tapestry (automagically) creates instances of that interface that invoke the corresponding component method (when using the l

Re: Creating DirectLink using DirectService

2006-10-24 Thread andyhot
IIRC, a listener is really an instance of org.apache.tapestry.IActionListener Tapestry (automagically) creates instances of that interface that invoke the corresponding component method (when using the listener: binding). You can dig for more at: http://svn.apache.org/viewvc/tapestry/tapestry4/tr

Creating DirectLink using DirectService

2006-10-24 Thread gant
Hi, I want to create DirectLink programmatically i.e. not using html template. I guess i should use DirectService to construct link etc. passing parameters with DirectServiceParameter etc. But how can i pass the right Listener ? gant