You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@beehive.apache.org by Ture Hoefner <th...@bea.com> on 2005/12/10 01:22:40 UTC

Problem with TreeElement.content and tree renderer?

Hi,

  I am using the TreeElement.setContent() method to set some extra HTML
markup for a tree node label when I need to make the label look a little
special under a certain condition.  From the javadoc, it sounds like the
intent of the TreeElement.content property is to provide HTML markup
that is displayed to the right of the label:

 

http://beehive.apache.org/docs/nightly/apidocs/classref_netui/org/apache
/beehive/netui/tags/tree/TreeElement.html#getContent()

 

  However, the string that I am setting in setContent() is getting
escaped when the tree is rendered, so It looks like this when I view the
HTML src of my page:

 

&lt;img src=&quot;/images/mypicture.gif &quot; alt=&quot;asdf&quot;
title=&quot;asdf&quot; /&gt;

 

I want it to look like this so I have an HTML img tag that will show the
image I want to the right of the label:

 

<img src="/images/mypicture.gif" alt="asdf" title="asdf" />

 

Is there a bug in the tree renderer?  It seems like my
TreeElement.content string should be left alone, not escaped.

 

Thanks.

 

-------------------

Ture Hoefner

WebLogic Portal Engineering

BEA Systems, Inc.

 


Re: Problem with TreeElement.content and tree renderer?

Posted by Daryl Olander <do...@gmail.com>.
Hi Ture,
This is actually a feature.  By default, the tree escapes it's content.  The
main reason for this is to prevent nodes from putting <script> into the
content.  To change the behavior just set the escapeForHtml attribute on the
<netui:tree> to false and it will stop.  You must have explicitly set this
because the default is actually false.

On 12/9/05, Ture Hoefner <th...@bea.com> wrote:
>
> Hi,
>
>   I am using the TreeElement.setContent() method to set some extra HTML
> markup for a tree node label when I need to make the label look a little
> special under a certain condition.  From the javadoc, it sounds like the
> intent of the TreeElement.content property is to provide HTML markup
> that is displayed to the right of the label:
>
>
>
> http://beehive.apache.org/docs/nightly/apidocs/classref_netui/org/apache
> /beehive/netui/tags/tree/TreeElement.html#getContent()
>
>
>
>   However, the string that I am setting in setContent() is getting
> escaped when the tree is rendered, so It looks like this when I view the
> HTML src of my page:
>
>
>
> &lt;img src=&quot;/images/mypicture.gif &quot; alt=&quot;asdf&quot;
> title=&quot;asdf&quot; /&gt;
>
>
>
> I want it to look like this so I have an HTML img tag that will show the
> image I want to the right of the label:
>
>
>
> <img src="/images/mypicture.gif" alt="asdf" title="asdf" />
>
>
>
> Is there a bug in the tree renderer?  It seems like my
> TreeElement.content string should be left alone, not escaped.
>
>
>
> Thanks.
>
>
>
> -------------------
>
> Ture Hoefner
>
> WebLogic Portal Engineering
>
> BEA Systems, Inc.
>
>
>
>
>