我正在使用Orbeon form runner来执行一些XForms文档。我想管理一个条目列表来做一些时间跟踪。我正在使用xforms:repeat来生成一个包含我的数据和xforms的表:使用xforms:insert来插入以插入新条目。现在我想按日期对条目进行排序,并按月对条目进行分组,如下图所示:
每个月我想计算总小时数。有人可以提示如何使用XForms / Orbeon构建它,是否有一个类似的工作示例?
谢谢!
答案 0 :(得分:1)
以下示例执行一些类似的分组以输出以下内容:
这与您的屏幕截图中的内容不完全相同,但应该让您对如何进行此分组有充分的了解。
<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:xforms="http://www.w3.org/2002/xforms"
xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fr="http://orbeon.org/oxf/xml/form-runner">
<xhtml:head>
<xhtml:title>Timesheet</xhtml:title>
<xforms:model>
<xforms:instance>
<instance>
<entry>
<start>2011-05-10</start>
<person>Homer</person>
</entry>
<entry>
<start>2011-05-09</start>
<person>Lisa</person>
</entry>
<entry>
<start>2011-04-07</start>
<person>Bart</person>
</entry>
<entry>
<start>2011-04-05</start>
<person>Bart</person>
</entry>
<entry>
<start>2011-04-02</start>
<person>Lisa</person>
</entry>
</instance>
</xforms:instance>
</xforms:model>
<xhtml:style type="text/css">
.xforms-repeat-selected-item-1, .xforms-repeat-selected-item-2 { background: transparent }
</xhtml:style>
</xhtml:head>
<xhtml:body>
<xxforms:variable name="entries" select="entry"/>
<xxforms:variable name="months" select="distinct-values($entries/start/substring(., 1, 7))"/>
<xhtml:ul>
<xforms:repeat nodeset="$months">
<xxforms:variable name="current-month" select="."/>
<xhtml:li>
<xforms:output value="format-date(xs:date(concat(., '-01')), '[MNn] [Y]')"/>
<xhtml:ul>
<xforms:repeat nodeset="$entries[substring(start, 1, 7) = $current-month]">
<xhtml:li>
<xforms:output ref="start"/>:
<xforms:output ref="person"/>
</xhtml:li>
</xforms:repeat>
</xhtml:ul>
</xhtml:li>
</xforms:repeat>
</xhtml:ul>
</xhtml:body>
</xhtml:html>