Re: Hyperlink not becoming hyperlink

2011-05-17 Thread TG
Yup, it works. Thanks so much for all responses! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Hyperlink-not-becoming-hyperlink-tp4403607p4404798.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread Robert Zeigler
change to be: ... With BeanEditor, there is only one "thing" per attribute, so it's just the property name. WIth grid, there is the header and the cell, so you have to add the Cell to the property name to override the cell rendering. See: http://tapestry.apache.org/current/tapestry-core/ref/

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread Thiago H. de Paula Figueiredo
On Tue, 17 May 2011 12:22:16 -0300, TG wrote: Richard, I wish it is that simple :) No, it does not work. It is that simple. ;) And saying it does not work without describing what happened is worse than saying nothing. ;) What's the generated HTML? Tapestry doesn't change any HTML element

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread Joost Schouten (ml)
There is no logical relationship between the link and the Grid. I guess you want to display a link in one of your tabel cells right? if so, you need to add this in your grid: link assuming that your component/

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread Thiago H. de Paula Figueiredo
On Tue, 17 May 2011 12:03:26 -0300, TG wrote: and it does not work. Any idea how to make the endpoint clickable URL automagically? No. It's just a bit of HTML you need to write. -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and in

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread TG
Richard, I wish it is that simple :) No, it does not work. Thanks anyway for the tips. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Hyperlink-not-becoming-hyperlink-tp4403607p4403780.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread Richard Hill
link ? On Tue, 2011-05-17 at 08:03 -0700, TG wrote: > Thanks for the prompt response. Actually I meant url as part of tapestry grid > component. So I tried this - > > xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; > xmlns:p="tapestry:parameter"> > ... > > ... >

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread TG
Thanks for the prompt response. Actually I meant url as part of tapestry grid component. So I tried this - http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; xmlns:p="tapestry:parameter"> ... ... ${url.endpoint} Link

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread Thiago H. de Paula Figueiredo
On Tue, 17 May 2011 11:16:31 -0300, TG wrote: Hi, Hi! This is a newbie question so please bear with me :) I used beanedit to display HTML. So far I like it, but a column that contains hyperlink, the values does not "become" a hyperlink that I can click to launch an external site. Local

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread Rich M
If I understand you correctly, you have some information stored in a field of your entity that is HTML mark-up for a hyperlink. For example, a beanedit for the entity class Reference which has a field String website which for this entry has an html link like "href="somesite.com">Some Site". If