cell value that is the same as the one vertically above is omitted.
-------------------------------------------------------------------

                 Key: DISPL-526
                 URL: http://jira.codehaus.org/browse/DISPL-526
             Project: DisplayTag
          Issue Type: Bug
            Reporter: Qing Ye


Here is a quick test case:

<%@ taglib uri="http://displaytag.sf.net"; prefix="display" %>
<% 
  java.util.ArrayList list = new java.util.ArrayList();
  java.util.Map map1 = new java.util.HashMap();
  map1.put("Entry1", 1);  //The value, 1,  is the same as the one below.
  map1.put("Entry2", 2);
  list.add(map1);
  java.util.Map map2 = new java.util.HashMap();
  map2.put("Entry1", 1);   //The value, 1,  will not show up in HTML, as it is 
the same as the one directly above.  
                                            // If it is change to another 
value, like 2, it will show up.
  map2.put("Entry2", 5);
  list.add(map2);
  request.setAttribute("testList", list);
%>
<display:table name="testList" />

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
displaytag-devel mailing list
displaytag-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to