그누보드 관리자 페이지 메뉴 레이어 위치문제
View 14,141 | 작성일2012.10.25 11:13
관련링크
본문
Doctype 을 district 로 설정한 경우 자바 레이아웃 잡을때 위치선정에 대한 동작이 틀려집니다.
그래서 위치가 이상한 곳에 나오게 되더라고요.
해결 방법은
/adm/admin.head.php 파일의
function layer_view(link_id, menu_id, opt, x, y)
{
....
//요거대신
// menu.style.left = get_left_pos(link) + x;
// menu.style.top = get_top_pos(link) + link.offsetHeight + y;
//요걸로 해주세요
menu.style.left = get_left_pos(link) + x +"px";
menu.style.top = get_top_pos(link) + link.offsetHeight + y + "px";
...
}
// menu.style.left = get_left_pos(link) + x;
// menu.style.top = get_top_pos(link) + link.offsetHeight + y;
//요걸로 해주세요
menu.style.left = get_left_pos(link) + x +"px";
menu.style.top = get_top_pos(link) + link.offsetHeight + y + "px";
...
}
출처 : SIR개발자 커뮤니티