2024/03/20 테이블 tab 포커스 기능 추가 및 모바일에서 깨지는 레이아웃 수정
This commit is contained in:
parent
25b33e07f7
commit
1d9c8174a8
@ -244,7 +244,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="list" items="${list}" varStatus="status">
|
||||
<tr onclick="fn_detail('<c:out value="${list.recordReadingSeq }" />')" style=" cursor: pointer;">
|
||||
<tr onclick="fn_detail('<c:out value="${list.recordReadingSeq }" />')" onkeypress="if(event.keyCode == 13){fn_detail('<c:out value="${list.recordReadingSeq }" />')}" style=" cursor: pointer;" tabindex="0" >
|
||||
<td class="td_num">
|
||||
<c:if test="${adrRecordReadingVO.searchSortOrd eq 'desc' }">
|
||||
<c:out value="${ ( paginationInfo.totalRecordCount - ((adrRecordReadingVO.pageIndex -1)*adrRecordReadingVO.pageUnit) ) - status.index }"/>
|
||||
@ -253,12 +253,12 @@
|
||||
<c:out value="${(adrRecordReadingVO.pageIndex - 1) * adrRecordReadingVO.pageUnit + status.count}"/>
|
||||
</c:if>
|
||||
</td>
|
||||
<td class="td_date">
|
||||
<span class="read_only m_th_text">발급구분</span>
|
||||
<td class="td_subscriber">
|
||||
<span class="m_th_text">발급구분</span>
|
||||
<p><kc:code codeId="CC501" code="${list.recordReadingFlag}"/></p>
|
||||
</td>
|
||||
<td class="td_date">
|
||||
<span class="read_only m_th_text">신청일자</span>
|
||||
<td class="td_subscriber">
|
||||
<span class="m_th_text">신청일자</span>
|
||||
<p><c:out value="${list.frstRegistPnttm}"/></p>
|
||||
</td>
|
||||
<td class="td_subscriber">
|
||||
@ -317,7 +317,7 @@
|
||||
|
||||
<!-- page -->
|
||||
<div class="page">
|
||||
<ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" />
|
||||
<ui:pagination paginationInfo = "${paginationInfo}" type="imageWeb" jsFunction="linkPage" />
|
||||
</div>
|
||||
<!-- //page -->
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user