Hi all,

I am trying to create a list of items in the tooltip. Something like

Item 1
Item 2
Item 3

To do this I need to use the tooltip component in tapestry jquery and to
generate my list by providing html <br /> without <>. In other words
something like this 

Item1&lt;br/&gt;Item2&lt;br/&gt;Item3&lt;br/&gt;

In other words this works

<t:any t:mixins="jquery/tooltip"
t:title="Item1&lt;br/&gt;Item2&lt;br/&gt;Item3&lt;br/&gt;" >priority</t:any>
                                                       
but since my data needs to be generate dynamically I need to use a method 


<t:any t:mixins="jquery/tooltip" t:title="${tags}" >tags</t:any>

    public String getTags() {
        return "Item:1&lt;br/&gt;Item2&lt;br/&gt;Item3&lt;br/&gt;";
    }

now this doesnt work. Any idea why? How can I output raw html from the
method?



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Output-raw-html-from-the-method-tp5718874.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to