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.
--
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
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
> Item 34
> Blah
>
>
> Item 16
> blah blah blah
>
>
>
>
--
View this message in context:
http://www.nabble.com/-T5--Linkable-rows-with-Grid-component-tf4519155.
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
>
>
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
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
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