|
|
@@ -203,14 +203,14 @@
|
|
|
<th>IP체크여부</th>
|
|
|
<td>
|
|
|
<input type="hidden" name="ipChkYn" th:value="${userInfo.ipChkYn}"/>
|
|
|
- <label class="chkBox" th:checked="${userInfo.ipChkYn == 'Y'}"><input type="checkbox" name="chkIpChkYn" th:value="${userInfo.ipChkYn}" th:checked="${userInfo.ipChkYn == 'Y'}"/>IP체크</label>
|
|
|
+ <label th:class="${'chkBox' + (userInfo.ipChkYn == 'Y' ? ' checked' : '')}"><input type="checkbox" name="chkIpChkYn" th:value="${userInfo.ipChkYn}" th:checked="${userInfo.ipChkYn == 'Y'}"/>IP체크</label>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<th>사용여부</th>
|
|
|
<td>
|
|
|
<input type="hidden" name="useYn" th:value="${userInfo.useYn}"/>
|
|
|
- <label class="chkBox" th:checked="${userInfo.useYn == 'Y'}"><input type="checkbox" name="chkUseYn" th:value="${userInfo.useYn}" th:checked="${userInfo.useYn == 'Y'}"/>사용</label>
|
|
|
+ <label th:class="${'chkBox' + (userInfo.useYn == 'Y' ? ' checked' : '')}"><input type="checkbox" name="chkUseYn" th:value="${userInfo.useYn}" th:checked="${userInfo.useYn == 'Y'}"/>사용</label>
|
|
|
</td>
|
|
|
<th>최종로그인일시</th>
|
|
|
<td th:text="*{loginLdt}">
|