if statement - Issue with IF test on JSF xtml -
sorry tried lot of others replies, still can't use it:
i want check value of bean in order print html code or not time have false condition:
here code:
<tbody> <ui:repeat value="${wasjvminvbean.listwasjvminv()}" var="jvm"> <tr> <td>${jvm.jvmstatus}</td> <td>${jvm.cellname}</td> <td>${jvm.serverbean.hostname}</td> <td>${jvm.jvmname}</td> <td>${jvm.type}</td> <td>${jvm.profilepath}</td> <td>${jvm.wasversion}</td> <c:if test="${jvm.jvmname eq 'dmgr'}"> <td>webconsole http://xxxx:8080</td> </c:if> <c:if test="${jvm.jvmname ne 'dmgr'}"> <td>n.a.</td> </c:if> <td>${jvm.fid}</td> <td>${jvm.heapmin}</td> <td>${jvm.heapmax}</td> <td>${jvm.wcdefaulttype}</td> <td>${jvm.wchost}</td> <td>${jvm.wcport}</td> </tr> </ui:repeat>
Comments
Post a Comment