Re: [T5] Linkable rows with Grid component

2007-10-02 Thread Nick Westgate
Object displayRow(int id) { ... } Hope that helps, Carl. -- View this message in context: http://www.nabble.com/-T5--Linkable-rows-with-Grid-component-tf4519155.html#a12916995 Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: [T5] Linkable rows with Grid component

2007-10-01 Thread Howard Lewis Ship
row", > ... > }) > @MixinClasses(ActionRows.class) > private Grid displayData; > > @OnEvent(value = ActionRows.event, component = ...) > public Object displayRow(int id) { > ... > } > > Hope that helps, > > Carl. > -- > View this message in

RE: [T5] Linkable rows with Grid component

2007-09-27 Thread Carl Pulley
omponent(parameters = { "action=dblclick", "rowid=row.id", "row=row", ... }) @MixinClasses(ActionRows.class) private Grid displayData; @OnEvent(value = ActionRows.event, component = ...) public Object displayRow(int id) { ... } Hope that helps, Carl. -- View t

RE: [T5] Linkable rows with Grid component

2007-09-26 Thread Carl Pulley
> Item 34 > Blah > > > Item 16 > blah blah blah > > > > -- View this message in context: http://www.nabble.com/-T5--Linkable-rows-with-Grid-component-tf4519155.

RE: [T5] Linkable rows with Grid component

2007-09-26 Thread Jean-Philippe Steinmetz
blah blah blah > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of sun58224 > Sent: Wednesday, September 26, 2007 2:17 AM > To: users@tapestry.apache.org > Subject: Re: [T5] Linkable rows with Grid component > >

Re: [T5] Linkable rows with Grid component

2007-09-26 Thread sun58224
Howard Lewis Ship gmail.com> writes: > > You just leverage the ability to override how particular columns are rendered: > > This assumes that your items have a property named label that you want > to convert into a link. > > > > ${item.label} > > > > On 9/25/07, Jean-Philippe

Re: [T5] Linkable rows with Grid component

2007-09-25 Thread Howard Lewis Ship
You just leverage the ability to override how particular columns are rendered: This assumes that your items have a property named label that you want to convert into a link. ${item.label} On 9/25/07, Jean-Philippe Steinmetz <[EMAIL PROTECTED]> wrote: > I would like to make each of

[T5] Linkable rows with Grid component

2007-09-25 Thread Jean-Philippe Steinmetz
I would like to make each of the rows in my grid component output link to some page. For instance have each row link to a detail page about that row. Is this possible with the grid component? If so how can I do it? Thanks Jean-Philippe Steinmetz