Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
issue #557
  • Loading branch information
rsoika committed Nov 18, 2023
1 parent c08305a commit a386af8
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,21 @@
<ui:fragment rendered="#{item.readonly}">
<ui:repeat var="itemvalue"
value="#{workitem.itemList[item.name]}">
<h:outputText value="#{itemvalue}"></h:outputText>

<c:if test="#{item.type eq 'selectBooleanCheckbox'}">

<h:panelGroup rendered="#{itemvalue}" styleClass="typcn typcn-input-checked"
style="font-size:1.2rem;margin-right: 5px;"></h:panelGroup>
<h:panelGroup rendered="#{!itemvalue}" styleClass="typcn typcn-media-stop-outline"
style="font-size:1.2rem;margin-right: 5px;"></h:panelGroup>



</c:if>
<c:if test="#{item.type ne 'selectBooleanCheckbox'}">
<h:outputText value="#{itemvalue}"></h:outputText>
</c:if>

<br />
</ui:repeat>
</ui:fragment>
Expand Down

0 comments on commit a386af8

Please sign in to comment.