Tapestry or JSP - OR condition

73 views Asked by At

I am new to Tapestry and JSP. How can I write this directive?

If jwcid is either isNotFSC OR isFSCIP, then it needs to display that field.

<tr>
    <td class="field-label">Created: </td>
    <td><text jwcid="created">00/00/0000</text></td>
    <td class="field-label">Created By: </td>
    <td><text jwcid="createdBy">Claims project</text> </td>

    <if jwcid = "isNotFSC" || jwcid = "isFSCIP">
        <td><submit id="startFollowupARequirementTask" jwcid="startFollowupARequirementTask"/></td>
    </if>
</tr>

How is the OR condition is written in Tapestry or JSP?

0

There are 0 answers