Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
On page these is content and read mode button. Earlier by clicking on content and read mode it navigates to new page. Now my requirement is keep clickable option for content as optional by creating dailog. Want test condition for this in jsp
Solved! Go to Solution.
Hi @17529290
Below is the syntax for if-else condition in jsp.
<c:choose> <c:when test="${properties.abc == 'Yes'}">...</c:when> <!-- if condition --> <c:when test="${properties.abc == 'No'}">...</c:when> <!-- else if condition --> <c:otherwise>...</c:otherwise> <!-- else condition --> </c:choose>-
View solution in original post
Views
Likes
Replies