IE9에서 자꾸 스마트 에디터가 말썽부린다.
처음엔 에디터 자체가 보이지 않아, 구글링 해서 해결했는데..
이번엔 에디터 윗 부분이 짤려 보인다.(이러거 또 그냥 못넘어가지 ㅡ.ㅡ;)

대충 검색하니 마땅한 결과가 안나온다.. 아에 언급조차 안되고 있다. 버튼 어쩌고 저쩌고의 이슈에 묻혀 버린건가..

소스 열어서 이것저것 손대다 보니 된다. 

/se/css/default.css 파일의
#smart_editor{ position:relative; background:#fff;}
이 부분을
#smart_editor{ position:relative; background:#fff; border: solid 1px white;} 
일케 고쳐주면 되더라고?
 
다음 번에 또 다른 문제 생기면 다음 에디터로 갈아타봐야겠다.
스마트 에디터의 업데이트가 전혀 되지 않고 있는 듯 하다.. 

'Tip' 카테고리의 다른 글

emma 한글 깨짐  (0) 2011.07.01
IE8 Textarea Bug  (0) 2011.06.20
css fiexed  (0) 2011.03.31
크로스도메인 쿠키문제  (0) 2011.01.21
MySql insert select  (0) 2010.11.06
Posted by 기계식키보드
:
Posted by 기계식키보드
:

jquery live

JavaScript 2011. 5. 20. 18:22 |
jquery live에 이벤트 여러개 지정할 수가 잆다능..

$('.hoverme').live('mouseover mouseout click', function(event) {
  if (event.type == 'mouseover') {
 $(this).addClass("ov");
  } else if (event.type == 'mouseout') {
 $(this).removeClass("ov");
  } else if (event.type == 'click') {
 
  }
});
 

'JavaScript' 카테고리의 다른 글

세션유지  (0) 2010.12.20
Side Tab  (0) 2010.10.09
팝업 띄우기 주소보안 방법.  (0) 2010.10.07
유용한 놈들  (0) 2010.09.26
jQuery Plug-in  (0) 2010.09.12
Posted by 기계식키보드
:

Eclipse plug-in

etc 2011. 5. 13. 13:24 |

'etc' 카테고리의 다른 글

개발자가 보면 암걸리는 영상  (0) 2015.06.21
참 친절한 사이트  (0) 2013.05.17
Parallax scrolling  (0) 2012.02.02
Posted by 기계식키보드
:

css fiexed

Tip 2011. 3. 31. 20:05 |
<style type="text/css">
.fixed-top    /* position fixed Top    */{position:fixed;bottom:auto;top:0px;}
.fixed-bottom /* position fixed Bottom */{position:fixed;bottom:0px;top:auto;}
.fixed-left   /* position fixed Left   */{position:fixed;right:auto;left:0px;}
.fixed-right  /* position fixed right  */{position:fixed;right:0px;left:auto;}

* html,* html body   /* IE6 Fixed Position Jitter Fix */{background-image:url(about:blank);background-attachment:fixed;}
* html .fixed-top    /* IE6 position fixed Top        */{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop));}
* html .fixed-right  /* IE6 position fixed right      */{position:absolute;right:auto;left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0));}
* html .fixed-bottom /* IE6 position fixed Bottom     */{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));}
* html .fixed-left   /* IE6 position fixed Left       */{position:absolute;right:auto;left:expression(eval(document.documentElement.scrollLeft));}
</style>

<div class="fixed-bottom" style="text-align:center; width:100%; left:0;"> <img src="
imagename.gif" border="0"> </div> 

'Tip' 카테고리의 다른 글

IE8 Textarea Bug  (0) 2011.06.20
IE9 스마트 에디터 상단 짤림  (2) 2011.05.31
크로스도메인 쿠키문제  (0) 2011.01.21
MySql insert select  (0) 2010.11.06
div가운데 정렬  (0) 2010.10.09
Posted by 기계식키보드
:
Calendar가 젤 어렵드라 난

public static String getMondayFromDay(String yyyymmdd) {
int yyyy = Integer.parseInt(yyyymmdd.substring(0, 4));
int mm = Integer.parseInt(yyyymmdd.substring(4, 6)) - 1;
int dd = Integer.parseInt(yyyymmdd.substring(6, 8));
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
String setDate = ""; 
Calendar calendar = Calendar.getInstance();
calendar.set(yyyy, mm, dd);
setDate = formatter.format(calendar.getTime());
int yoil = calendar.get(Calendar.DAY_OF_WEEK);
System.out.println("입력날짜:"+setDate + ", 요일:"+yoil);
int gap = 0;
int[] idx = {1, 2, 3, 4, 5, 6, 7};
for(int i = 0; i < idx.length; i++) {
if( yoil != 2 && yoil == idx[i] ) {
gap = i*2-yoil;
gap = 0-gap;
}
}
calendar.add(Calendar.DATE, gap);
setDate = formatter.format(calendar.getTime());
yoil = calendar.get(Calendar.DAY_OF_WEEK);
System.out.println("입력날짜:"+setDate + ", 요일:"+yoil);
return "";
}

'Java' 카테고리의 다른 글

자바 컴파일  (0) 2012.12.19
HtmlCleaner  (0) 2012.06.18
spring3 ibatis log 안나옴  (0) 2011.12.23
log4j.properties  (0) 2010.08.15
Eclipse 실행에러 및 버벅거림  (0) 2010.07.18
Posted by 기계식키보드
:
http://elco.tistory.com/entry/%ED%9A%8C%EC%9B%90%EA%B0%80%EC%9E%85-%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4%EB%A5%BC-%EC%8B%AC%ED%94%8C%ED%95%98%EA%B2%8C-%EB%A7%8C%EB%93%9C%EB%8A%94-17%EA%B0%80%EC%A7%80-%EB%B0%A9%EB%B2%95

Posted by 기계식키보드
:

MySql 백업

Database 2011. 1. 21. 16:51 |
cd /usr/local/bin
wget http://mesh.dl.sourceforge.net/sourceforge/automysqlbackup/automysqlbackup.sh.2.5
sudo vi automysqlbackup.sh.2.5
chmod 755 automysqlbackup.sh.2.5
./automysqlbackup.sh.2.5
cd /etc/cron.daily/
ln -s /usr/local/bin/automysqlbackup.sh.2.5 automysqlbackup



'Database' 카테고리의 다른 글

MySql 계정생성  (0) 2012.06.06
MySql backup(NT)  (0) 2011.07.07
Posted by 기계식키보드
:

크로스도메인 쿠키문제

Tip 2011. 1. 21. 15:50 |

PHP:

header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');

ASP.NET:
HttpContext.Current.Response.AddHeader("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");

JSP:
response.addHeader("P3P","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"")


from url

http://jabsiri.tistory.com/tag/%ED%81%AC%EB%A1%9C%EC%8A%A4%EB%8F%84%EB%A9%94%EC%9D%B8%20%EC%BF%A0%ED%82%A4



'Tip' 카테고리의 다른 글

IE9 스마트 에디터 상단 짤림  (2) 2011.05.31
css fiexed  (0) 2011.03.31
MySql insert select  (0) 2010.11.06
div가운데 정렬  (0) 2010.10.09
말풍선 그럴싸한거  (0) 2010.09.26
Posted by 기계식키보드
:

세션유지

JavaScript 2010. 12. 20. 11:01 |
 <c:if test="${not empty sessionScope.userData}">  
jQuery.fjTimer({ interval: 1000*60*15, repeat: true, tick: function(counter, timerId) {
if (confirm("회원님의 보안을 위하여 5분 후 로그아웃 됩니다.\n로그인 상태를 계속 유지하시겠습니까?")) {
$.post('/sessionContinue.html', {}, function(data) {
if( !data.isSuccess ) {
alert("시간이 많이 지나 자동으로 로그아웃이 되었습니다.\n현재 작업 중이던 정보가 제대로 저장되지 않을 수 있습니다.\n다시 로그인 해주세요.");
}  
}, "json");
}});  

'JavaScript' 카테고리의 다른 글

jquery live  (0) 2011.05.20
Side Tab  (0) 2010.10.09
팝업 띄우기 주소보안 방법.  (0) 2010.10.07
유용한 놈들  (0) 2010.09.26
jQuery Plug-in  (0) 2010.09.12
Posted by 기계식키보드
: