Skip to content

Commit

Permalink
updated spaceref
Browse files Browse the repository at this point in the history
Issue #457
  • Loading branch information
rsoika committed Aug 9, 2021
1 parent 2ba8fd1 commit 6064711
Showing 1 changed file with 3 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,16 @@
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
xmlns:h="http://xmlns.jcp.org/jsf/html">

<dl>
<dt>
<h:outputLabel value="#{empty label?message['form.space']:label}" />
<h:panelGroup rendered="#{empty required?false:required}"
class="imixs-required">*</h:panelGroup>
</dt>
<dd>
<h:selectOneMenu style="width:20em;"
required="#{empty required?false:required}"
value="#{workflowController.workitem.item['txtSpaceRef']}">
value="#{workflowController.workitem.item['space.ref']}">
<f:selectItem itemLabel=""></f:selectItem>
<c:forEach items="#{byprocess?teamController.getSpacesByProcessId(workflowController.workitem.item['txtProcessRef']):teamController.spaces}" var="space">
<f:selectItem itemLabel="#{space.item['txtName']}"
<c:forEach items="#{byprocess?teamController.getSpacesByProcessId(workflowController.workitem.item['process.ref']):teamController.spaces}" var="space">
<f:selectItem itemLabel="#{space.item['space.name']}"
itemValue="#{space.item['$UniqueID']}">
</f:selectItem>
</c:forEach>
</h:selectOneMenu>
</dd>
</dl>


</ui:composition>
Expand Down

0 comments on commit 6064711

Please sign in to comment.