Skip to Content
0
Former Member
Sep 13, 2004 at 09:01 AM

HTMBL tree

125 Views

I want to dynamically create tree with HTBLB tree tag. I create simple example:

<%@ page contentType="text/html; charset=UTF-8" %>

<%@ taglib uri="tagLib" prefix="hbj" %><hbj:content id="myContext" >

<hbj:page title="Test tree">

<hbj:form id="myFormId">

<hbj:tree id="S_Tree"

tooltip="Test tree"

>

<%

for (int i = 0; i < 10; i++)

{

System.out.println(i);

%>

<hbj:treeNode

id="eee<%= i %>"

text="Test <%= i %>!">

<hbj:treeNode

id="ddd<%= i %>"

text="Test <%= i %>!">

</hbj:treeNode>

</hbj:treeNode>

<% }

%>

</hbj:tree>

</hbj:form>

</hbj:page>

</hbj:content>

In result I have only one root node. Cycle is ignored by tree tag! It means that tree tag can not be used on dynamic JSP pages? It is very poorly...

It means that I should create this tree manually 😔 But I can't reconstruct portal style exactly...

Message was edited by: Eugeny Balakhonov