GroupBy not honoring table boundaries where table within table
--------------------------------------------------------------

                 Key: TOMAHAWK-1068
                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1068
             Project: MyFaces Tomahawk
          Issue Type: Bug
          Components: Extended Datatable
    Affects Versions: 1.1.6
            Reporter: peter hunt


In the following example:
fund 1 
has 1 members who has 10 assets that have category 'abc' - groupBy works 
correctly

member 2 has 5 assets that have category 'abc'
member 1 will
<t:dataTable value="#{fund}" var="funds"        >
<t:column >
<t:dataTable value="#{fund.members}" var="members"      >
   <t:column >
       <h:outputText value="#{members.memberName}" />
   </t:column>
   <t:column>
      <t:dataTable value="#{members.assets}" var="assets">
         <t:column groupBy="true">
            <h:outputText value="#{assets.assetCategory} " />
         </t:column>
         <t:column >
            <h:outputText value="#{assets.description} " />
         </t:column>
      </t:dataTable>
   </t:column>
</t:dataTable>
</t:column>
</t:dataTable>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to