Skip to content

Commit

Permalink
UI extension
Browse files Browse the repository at this point in the history
Issue #151
  • Loading branch information
rsoika committed Mar 19, 2021
1 parent b422e1d commit a4c0130
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
<h:selectOneRadio value="#{documentImportController.source.item['type']}">
<f:selectItem itemLabel="IMAP" itemValue="IMAP"/>
<f:selectItem itemLabel="FTP" itemValue="FTP"/>
<f:selectItem itemLabel="CSV" itemValue="CSV"/>
</h:selectOneRadio>


Expand All @@ -194,6 +195,7 @@
<dd>
<h:selectOneMenu
value="#{documentImportController.source.item['workflowgroup']}">
<f:selectItem itemLabel=" - " itemValue=""/>
<c:forEach items="#{modelController.workflowGroups}" var="group">
<f:selectItem itemLabel="#{group}" itemValue="#{group}" />
</c:forEach>
Expand Down Expand Up @@ -277,7 +279,6 @@
<dd>
<h:inputTextarea required="false"
style="height: 5em; width: 100%;"
converter="org.imixs.VectorConverter"
value="#{documentImportController.source.item['options']}">
</h:inputTextarea>
<p class="small">You can apply custom properties here.
Expand Down

0 comments on commit a4c0130

Please sign in to comment.