내 jsp 파일에 display 태그가 있습니다. 그와 같은 .. 내가 ID 1. 사용자의 편집 링크를 표시 할 didnt는 그의 코드 <c:if test="%{currentRow.ID ne '1'}">
을 작성했다하지만 그 조건이 작동하지 주는 방법 표시 태그에 c : if 태그
<display:table id="currentRow" name="${ListObj}" requestURI="" sort="page" defaultsort="2"
pagesize="5" class="displayTable">
<display:caption><font color="red">Users List</font></display:caption>
<display:column property="ID" title="Role" ></display:column>
<display:column property="Name" title="User Name" sortable="true"></display:column>
<c:if test="%{currentRow.ID ne '1'}">
<display:column >
<a href="javascript:editUserJS('editUser.jav?id=${currentRow.ID}');"><i>edit</i></a>
</display:column>
</c:if>
</display:table>
. 즉, 표시 태그의 행에 편집 링크가 표시되지 않습니다. 하지만
<c:if test="%{currentRow.ID eq '1'}">
을 입력하면 편집 링크가 표시됩니다.
ID = 1 인 행을 제외한 모든 행에 대해 어떻게 표시 할 수 있습니까?
조건이'$ {currentRow.ID ne '1'}'이거나 오타입니까? –
ya ID 값이 1인지 확인하고 싶습니다. –
$ {currentRow.ID eq '1'}이 (가) 작동한다면'$ {not (currentRow.ID eq '1')}'을 시도 했습니까? –