발주기관 > 건설현장 조회 목록화면 tr 을 드래그하여 텍스트를 긁을때는 상세화면으로 이동하지 않도록 처리

발주기관 > 관리 시추정보 현황 tr 을 드래그하여 텍스트를 긁을때는 지도가 열리지 않도록 처리
main
유지인 2025-10-21 16:34:53 +09:00
parent 45ef75e1c3
commit 1686ff808b
2 changed files with 15 additions and 7 deletions

View File

@ -402,9 +402,16 @@ if (request.getSession().getAttribute("CLS") == null || "2".equals(request.getSe
});
/**
* 발주기관 목록화면 tr 드래그 시 상세화면 이동 방지처리
* 드래그 이벤트와 클릭이벤트를 구분하여 감지한다.
*/
function handleRowClick(CID) {
if (!isDragging) {
window.location.href = 'modify.do?CID=' + CID;
}
}
</script>
<!-- javascript end-->

View File

@ -123,8 +123,9 @@ function handleMouseDown() {
function handleMouseMove() {
isDragging = true;
}
function handleRowClick(CID) {
if (!isDragging) {
window.location.href = 'modify.do?CID=' + CID;
}
}
// 클릭이벤트는 각 jsp에서 처리한다. (내부 처리가 상이함)
//function handleRowClick(CID) {
// if (!isDragging) {
// window.location.href = 'modify.do?CID=' + CID;
// }
//}