-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #506
- Loading branch information
Showing
5 changed files
with
128 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,6 +147,7 @@ yearly=Jährlich | |
daily=Täglich | ||
hourly=Stündlich | ||
type=Typ | ||
summary=Zusammenfassung | ||
|
||
|
||
|
||
|
50 changes: 50 additions & 0 deletions
50
imixs-office-workflow-app/src/main/webapp/pages/workitems/parts/workitemref.xhtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<ui:composition xmlns="http://www.w3.org/1999/xhtml" | ||
xmlns:ui="http://xmlns.jcp.org/jsf/facelets" | ||
xmlns:f="http://xmlns.jcp.org/jsf/core" | ||
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core" | ||
xmlns:h="http://xmlns.jcp.org/jsf/html" | ||
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"> | ||
|
||
|
||
|
||
|
||
<ui:remove> | ||
<!-- WorkitemLink Component | ||
Requires that the subform workitemlinkSearch is places at once in the ui:form | ||
NOTE: The Input Item is fixed to the item name '$workitemref' | ||
--> | ||
</ui:remove> | ||
|
||
<f:subview id="workitemlink-view"> | ||
<!-- show external references --> | ||
<h:panelGroup id="reference_box" layout="block" | ||
class="marty-workitemlink-referencebox"> | ||
<c:forEach var="workitem" | ||
items="#{workitemLinkController.getExternalReferences(options)}"> | ||
<div class="marty-workitemlink-referencebox-entry"> | ||
<h:link outcome="/pages/workitems/workitem"> | ||
<h:outputText escape="false" value="#{workitem.item['$WorkflowSummary']}" | ||
rendered="#{!empty workitem.item['$WorkflowSummary']}" /> | ||
<h:outputText value="#{suggest.item['$created']}" | ||
rendered="#{empty workitem.item['$WorkflowSummary']}"> | ||
<f:convertDateTime timeZone="#{message.timeZone}" | ||
pattern="#{message.dateTimePatternShort}" /> | ||
</h:outputText> | ||
<f:param name="id" value="#{workitem.item['$uniqueid']}" /> | ||
</h:link> | ||
<br /> | ||
<span class="marty-workitemlink-entry-abstract"> | ||
<h:outputText value="#{workitem.item['$workflowgroup']}: " /> | ||
<h:outputText value="#{workitem.item['$workflowstatus']}" /> | ||
</span> | ||
</div> | ||
</c:forEach> | ||
</h:panelGroup> | ||
|
||
</f:subview> | ||
|
||
|
||
</ui:composition> | ||
|
56 changes: 56 additions & 0 deletions
56
imixs-office-workflow-app/src/main/webapp/pages/workitems/parts/workitemreftable.xhtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<ui:composition xmlns="http://www.w3.org/1999/xhtml" | ||
xmlns:ui="http://xmlns.jcp.org/jsf/facelets" | ||
xmlns:f="http://xmlns.jcp.org/jsf/core" | ||
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core" | ||
xmlns:h="http://xmlns.jcp.org/jsf/html" | ||
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"> | ||
|
||
|
||
|
||
|
||
<ui:remove> | ||
<!-- WorkitemLink Component | ||
Requires that the subform workitemlinkSearch is places at once in the ui:form | ||
NOTE: The Input Item is fixed to the item name '$workitemref' | ||
--> | ||
</ui:remove> | ||
|
||
<f:subview id="workitemlink-view"> | ||
<!-- show external references --> | ||
|
||
<table style="width: 100%; margin: 5px;"> | ||
<tr> | ||
<th style="text-align: left;">#{message['edited']}</th> | ||
|
||
<th style="text-align: left;">#{message['form.subject']}</th> | ||
<th style="text-align: left;">Status</th> | ||
</tr> | ||
<ui:param name="refworkitems" | ||
value="#{workitemLinkController.getExternalReferences(options)}"></ui:param> | ||
<ui:repeat value="#{refworkitems}" var="refworkitem"> | ||
<tr> | ||
<td> | ||
<h:outputText value="#{refworkitem.item['$modified']}"> | ||
<f:convertDateTime timeZone="#{message.timeZone}" type="both" | ||
pattern="#{message.dateTimePattern}" /> | ||
</h:outputText> | ||
<h:outputText value=" #{message.by} #{userController.getUserName(refworkitem.item['$Editor'])}" title="#{refworkitem.item['$Editor']}" /> | ||
</td> | ||
<td><h:link outcome="/pages/workitems/workitem"> | ||
#{refworkitem.item['$workflowsummary']} | ||
<f:param name="id" | ||
value="#{refworkitem.item['$uniqueid']}" /> | ||
</h:link></td> | ||
|
||
<td><h:outputText | ||
value="#{refworkitem.item['$workflowstatus']}" /></td> | ||
</tr> | ||
</ui:repeat> | ||
</table> | ||
</f:subview> | ||
|
||
|
||
</ui:composition> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters