아직 bootstrap 내용을 완벽하게 숙지하지 못한 상태에서 기능 익히느라고 Copy & Paste 하면서 형태를 변경해보면서 하다보니 원하지 않은 결과로 좀 고생하고 있다.
<nav class="navbar navbar-default navbar-fixed-top">
를 설정했는데 모달(modal)창이 계속 비활성화되어 왜 그런지 원인 찾으려고 무진장 고생을 했다.
navbar-fixed-top 때문에 생긴 현상이다.
이거 없앴더니 바로 정상 모드로 돌아온다.
if(tabName == '#modal-login'){
//alert(tabName);
$('#modal-login').on('shown.bs.modal', function () {
$(this).find('input[type=text]:visible:first').focus();
});
}
그리고 Path 설정을 하면서 고생 좀 하고 있는 중이다.
Web root 에 설정하면 문제가 없는데 실행되는 파일이 서브디렉토리에 있으면 문제가 되는거 같다.
현재 디렉토리 경로를 파악하여 어떤 경로에 있던 완벽하게 할 수 있는 코드를 만들어 볼 생각이다.
<?php
$cur_root = '../'; // 실행경로가 root 가 아니라서 root는 부모 디렉토리
$g = array(
'path_root' => $cur_root,
'path_core' => $cur_root.'_core/',
'path_var' => $cur_root.'_var/',
'path_tmp' => $cur_root.'_tmp/',
'path_layout' => $cur_root.'layout/',
'path_module' => $cur_root.'modules/',
'path_plugin' => $cur_root.'plugin/',
'path_bootstrap' => $cur_root.'plugin/bootstrap/',
'path_page' => $cur_root.'pages/',
'path_file' => $cur_root.'files/'
);
?>
'Web 프로그램 > 메뉴 만들기' 카테고리의 다른 글
[bootstrap] PHP/MySQL 과 연동한 부트스트랩 메뉴 만들기 (2) | 2017.02.15 |
---|---|
[bootstrap] Multi level dropdown menu (0) | 2017.02.13 |
[bootstrap] TopMenu, 로그인, 로그아웃 처리 (0) | 2017.02.01 |
[jQuery] jQuery 토글 및 메뉴 만들기 - 1 (0) | 2017.01.26 |
[jQuery] easyUI treeview 만들기 (MySQL to JSON tree using PHP) (0) | 2016.12.24 |