Hi Im was looking for the anwser but I think i havent found it.

The problem what I have is the following:

I have a Bean with three properties, like that:

+java.util.String name
+java.util.String[] ids (String's array)
+java.util.String[] regions (String's array)

And i want to show each bean in one row, with a Nested table for each
array, and i have followed the tutorial and I have in my jsp(snippet
code), but I always getting "Nothing to display":
Im using Struts 1.3, where I put into the request (the first time)
into the session, the list of my Beans, and I dont make, in the JSP,
something like:
<jsp:scriptlet> request.setAttribute( "test", new TestList(4, false)
); </jsp:scriptlet>

What does wrong??
Any help?? (In form of url, or code, or something)

Many Thanks


<display:table name="listBR" id="brs">
  <display:column property="name" />


  <c:set var="nestedName" value="test.item[${brs_rowNum -1}].subList" />

  <display:column title="Identifier">

        <display:table name="${nestedName}" id="child${brs_ids}">
                <display:column property="ids" />
        </display:table>
  </display:column>
 <display:column title="Identifier">

        <display:table name="${nestedName}" id="child${brs_regions}">
                <display:column property="regions" />
        </display:table>
  </display:column>
</display:table>

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to