This page (revision-6) was last changed on 17-Dec-2010 13:24 by Dieter Käppel

This page was created on 22-Oct-2010 16:11 by Dieter Käppel

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
6 17-Dec-2010 13:24 3 KB Dieter Käppel to previous
5 17-Dec-2010 13:24 3 KB Dieter Käppel to previous | to last
4 16-Dec-2010 16:50 3 KB Dieter Käppel to previous | to last
3 04-Nov-2010 16:02 3 KB Dieter Käppel to previous | to last
2 02-Nov-2010 18:43 1 KB Dieter Käppel to previous | to last
1 22-Oct-2010 16:11 630 bytes Dieter Käppel to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 21 added 33 lines
!Sublisten
{{{
<rich:dataTable value="#{outers}" var="outer">
<f:facet name="header">
<rich:columnGroup>
<rich:column>
<h:outputText value="1"/>
</rich:column>
<rich:column>
<h:outputText value="2"/>
</rich:column>
<rich:column>
<h:outputText value="3"/>
</rich:column>
</rich:columnGroup>
</f:facet>
<rich:column rowspan="#{outer.inners.size + 1}">
<h:outputText value="1 (outer)"/>
</rich:column>
<rich:column colspan="2" style="padding: 0; border: 0;"/>
<rich:subTable value="#{outer.inners}" var="inner">
<rich:column>
<h:outputText value="2 (inner)"/>
</rich:column>
<rich:column>
<h:outputText value="3 (inner)"/>
</rich:column>
</rich:subTable>
</rich:dataTable>
}}}