Page 1 of 1

새창으로 띄우기 문제

Posted: 2006 01 05 19:02 46
by firefox test
아래와 같은 JavaScript로 되어 있는 페이지에서 IE의 경우 네이버 사전과 같이
타이틀바만 있는 작은 창이 뜨지만 Firefox에서는 최대화된 탭으로 뜹니다.
현재 Firefox에 IETab, Tab Mix Plus를 사용하고 있습니다. 네이버 작은창 사전은
정상적으로 뜨고 있습니다.

--------------------------

function goDetailView(msgno, folderName)
{
document.fListMail.msgno.value = msgno;
document.fListMail.foldername.value = folderName;

if('N' == 'Y')
{
document.fListMail.isPopup.value = "Y";
}

document.fListMail.cmd.value = "detail";
document.fListMail.method = "post";
document.fListMail.action = "/service/mail/RController";

var popWidth = 880;
var popHeight = 600;
var popLeft = (scrWidth-popWidth)/2;
var popTop = (scrHeight-popHeight)/2;
var popStyle = "scrollbars=yes,status=no,resizable=yes,menubar=no,toolbar=no,location=no";
popStyle += ",width=" + popWidth;
popStyle += ",height=" + popHeight;
popStyle += ",left=" + popLeft;
popStyle += ",top=" + popTop;

popWin = window.open(dummyURL,"detail",popStyle);

document.fListMail.target = popWin.name;
popWin.opener = self;
document.fListMail.submit();
popWin.focus();
}

--------------------------------

Posted: 2006 01 05 20:01 01
by 후니미닉
탭믹스설정의 일반-자바스크립트 팝업의 값을 크기가 정해진 팝업만 새창에 열기로 바꿔보세요.

Posted: 2006 01 06 09:15 37
by firefox test
확인을 해보니 Firefox의 일반 탭에서는 동작을 하지만 IETab 상에서는 JavaScript 창이 정상적으로 동작하지 않는것 같습니다. 참고하세요.

Posted: 2006 03 20 18:11 00
by dodegun
IEtab 공식 홈피에 있는 내용입니다.

Known Issues:

1. IE ActiveX's enable/disable setting NOT work
2. Script Error problem
3. Password Manager NOT work
4. Shift+Delete(Cut) NOT work
5. Button has no XP Style (theme)
6. All popup windows always open in new IE Tab
7. Navigate history list NOT support
8. SSL icon NOT support
9. Site's favicon NOT support

6번에 보면 모든 팝업은 IE Tab으로만 열린다는 거죠.
회사에서 쓰는 인트라넷 덕분에 IE Tab 사용중인데, 업그레이드 되길 기다려야 겠네요.