메뉴 건너뛰기

조회 수 3393 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

웹프로그램 하다가 업종 전환 한지 1년정도 되가는데 작업 하다가 필요한게 있어서 한번 만들어 봤습니다.
사용법은 제목부분의 칸 사이에 마우스를 가까이 하면 커서 모양이 바뀝니다. 그때 드래그를 하면 마우스가 이동한
거리만큼 셀의 크기가 바뀝니다.


제목 부분의 클레스 이름은 반드시 적어 주셔야 합니다. 셀의 사이즈가 변함에 따라 input 박스도 달라집니다...
그러나 사이즈가 변하는 input 박스를 남발 하면 반응 속도가
느려집니다. 또한 input 박스의 사이즈는 td의 cellpadding 보다 작아야 합니다.
주석을 달아 놨으니 이해하시는데는 별 어려움이 없을거라 생각 됩니다.
테이블을 <div> 테그 안에 넣지 않으시려면 테이블 자체의 사이즈는 지정해 주시면 안됩니다. (td)만 지정하세요
말줄임표 효과는 전에 스쿨에서 본걸로 구현해 보았습니다.

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=euc-kr">
<style>
.ellipsis {font:9pt "굴림"; width:100%; overflow:hidden; text-overflow:ellipsis; text-align:left; }
.colresize {font:9pt "굴림"; cursor:""; }
.input_box {width:expression(this.parentNode.clientWidth-8); }
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
var mousedown = false; //마우스를 누른 상태
var td = ""; //사이즈 변경할 td
var td_width; //변경할 td의 width,
var x = 0; //마우스 드레그전 가로위치
function TCstartColResize(obj){
       mousedown = true;
       td = obj;
       td_width = td.width;
       x = event.clientX;
}
function TCColResize()
{
       if (mousedown){
              var distX = event.x - x; //이동한 간격
              td.width = parseInt(td_width) + parseInt(distX);
       }
}
function TCstopColResize(){
       mousedown = false;
       td = '';
}
function cell_left(obj){//마우스가 셀의 왼쪽인지 측정
       if(event.offsetX < 5 && obj.cellIndex!=0)
              return true;
       else 
              return false;
}
function cell_right(obj){//마우스가 셀의 오른쪽인지 측정
       if(event.offsetX > obj.width-4)
              return true;
       else 
              return false;
}
//리사이즈시작
document.onmousedown = function(){
try{
       var now_mousedown = window.event.srcElement;
       if(now_mousedown.className.toUpperCase()=="COLRESIZE"){
              if( cell_left(now_mousedown) ){
                     now_mousedown = now_mousedown.parentNode.childNodes[now_mousedown.cellIndex-1];
              }else if( !cell_right(now_mousedown) ){
                     return true;//오른쪽도 왼쪽도 아니면 사이즈 조절 안함
              }
              TCstartColResize(now_mousedown);
       }
}catch(e){ return true; }
}
//리사이즈
document.onmousemove = function(){
try{
       var now_mousemove = window.event.srcElement;
       if(now_mousemove.className.toUpperCase()=="COLRESIZE" || td!=""){
              //셀의 가장자리면 마우스 커서 변경
              if( cell_left(now_mousemove) || cell_right(now_mousemove) ){
                     now_mousemove.style.cursor = "col-resize";
              }else{
                     now_mousemove.style.cursor = "";
              }
              TCColResize(now_mousemove);
       }else{
              now_mousemove.style.cursor = "";
}
}catch(e){ return true; }
}
//리사이즈종료
document.onmouseup = function(){
try{
       var now_mouseup = window.event.srcElement;
       //if(now_mouseup.className=="colResize"){
              TCstopColResize(now_mouseup);
       //}
}catch(e){ return true; }
}
//리사이즈 도중 텍스트 선택 금지
document.onselectstart = function(){
try{
if(td != ""){
return false;
}
}catch(e){ return true; }
}
//-->
</SCRIPT>
</HEAD>


<BODY>
<div style="width:100%;height:100;overflow-x:auto;overflow-y:auto">
<table width="430" border="0" cellpadding="3" cellspacing="1" bgcolor="#B8B8B8" nowrap style='table-layout:fixed'>
<tr bgcolor="#A5D4D2" align="center" height="25">
<td width="35" class="colresize">선택</td>
<td width="35" class="colresize">순번</td>
<td width="70" class="colresize">품목명</td>
<td width="30" class="colresize">수량</td>
<td width="50" class="colresize">단위</td>
<td width="70" class="colresize">날짜</td>
<td width="70" class="colresize">장소</td>
<td width="70" class="colresize">비고</td>
</tr>
<tr bgcolor="#FFFFFF" height="27" align="center">
<td><Input type="radio" name="radio"></td>
<td>1</td>
<td><input type='text' class="input_box"></td>
<td><input type='text' class="input_box"></td>
<td><select class="input_box"><option>EA</option></select></td>
<td><input type='text' class="input_box"></td>
<td><input type='text' class="input_box"></td>
<td nowrap class="ellipsis">비고 비고 비고 비고 비고 비고 비고 비고 비고</td>
</tr>
</table>
</div>
</BODY>
</HTML>


  1. No Image 28Sep
    by
    2018/09/28 Views 3252 

    JavaScript 출생년도에 따른 나이 계산 자바스크립트

  2. No Image 27Oct
    by
    2018/10/27 Views 3898 

    자바스크립트 배열 중복값 다루기

  3. No Image 27Oct
    by
    2018/10/27 Views 1913 

    자바스크립트 urlencode(), urldecode(), rawurlencode(), rawurldecode()

  4. No Image 27Oct
    by
    2018/10/27 Views 1732 

    jQuery 엘리먼트 선택

  5. No Image 07Nov
    by
    2018/11/07 Views 1416 

    오늘 날짜 구하기

  6. No Image 07Nov
    by
    2018/11/07 Views 1443 

    == / === / != / !== 차이

  7. No Image 08Jan
    by
    2019/01/08 Views 5218 

    HTML 화면을 PDF로 출력

  8. No Image 10Jan
    by
    2019/01/10 Views 2374 

    Javascript 로 초성검색하기

  9. No Image 16Jan
    by
    2019/01/16 Views 1104 

    input 태그에서 name과 id의 차이

  10. No Image 16Jan
    by
    2019/01/16 Views 1179 

    랜덤(Random) / 난수 만들기

  11. No Image 16Jan
    by
    2019/01/16 Views 1066 

    에러처리

  12. No Image 16Jan
    by
    2019/01/16 Views 1051 

    배열과 Array객체

  13. No Image 16Jan
    by
    2019/01/16 Views 1329 

    div태그를 이용한 클릭시 레이어 띄우기

  14. No Image 16Jan
    by
    2019/01/16 Views 1252 

    두 날짜 사이 토일요일 개수 구하기

  15. No Image 16Jan
    by
    2019/01/16 Views 1179 

    한글 짜르기

  16. No Image 16Jan
    by
    2019/01/16 Views 1137 

    기간 설정용 달력 팁앤노하우

  17. No Image 16Jan
    by
    2019/01/16 Views 1163 

    한글 또는 영문만이 존재하는지 체크

  18. No Image 16Jan
    by
    2019/01/16 Views 1308 

    체크박스 전체 선택 및 해제, 반드시 1개 이상 선택 강제

  19. No Image 16Jan
    by 조쉬
    2019/01/16 Views 3393 

    엑셀처럼 td 사이즈 조절하기

  20. No Image 16Jan
    by
    2019/01/16 Views 1588 

    특정 부분 인쇄 자바스크립트

Board Pagination Prev 1 ... 4 5 6 7 8 9 10 11 12 13 Next
/ 13

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved