일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- JSP
- 인테리어그림
- 블로그 조회수 늘리기
- 블로그 조회수
- samba
- 즐겨찾기 추가
- IIS
- Jrun
- Adobe pdf reader
- 국민연금
- JavaScript
- 블로그 수익화
- CSS
- Vista
- .NET
- CVS
- 블로그 방문자 늘리기
- 에덴미술
- HTML
- 블루수국그림
- PHP
- 갑근세
- Eclipse
- Jexcel
- 소득세
- flash
- oralce
- MySQL
- Administrator
- MSSQL
- Today
- Total
I LOVE EJ
FCK 에디터 본문
#서버 적용하기
첨부파일 압축을 푼후
FCKeditor 폴더는 웹폴더에 넣고
fredck는 java 소스로 넣어둔다.
FCKeditor.tld, web.xml 파일은 WEB-INF에 넣어두고
각 환경에 맞게 셋팅한다. ^^;;
# FCKeditor 불러오기
<%@ taglib uri="/WEB-INF/FCKeditor.tld" prefix="FCK" %>
<script type="text/javascript" src="/FCKeditor/fckeditor.js"></script>
<FCK:editor id="Contents" basePath="/FCKeditor/"
width="585"
height="300"
toolbarSet="direct"
customConfigurationsPath="/FCKeditor/direct_fckconfig.js"
imageBrowserURL="/FCKeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector"
linkBrowserURL="/FCKeditor/editor/filemanager/browser/default/browser.html?Connector=connectors/jsp/connector" >
<%=Contents%>
</FCK:editor>
# content 내용 null 체크
var oEditor = FCKeditorAPI.GetInstance('Contents') ;
var div = document.createElement("DIV");
div.innerHTML = oEditor.GetXHTML();
if( isNull( div.innerText ) ){
alert("내용을 입력하세요.");
oEditor.Focus();
return;
}
'Tool > other' 카테고리의 다른 글
FCKeditor 한글 이미지 업로드 후 깨진다면...? (0) | 2007.10.15 |
---|---|
FCKeditor java 버전 설치 문서 (0) | 2007.10.15 |
FCKeditor 관련 TIP (0) | 2007.10.15 |
WYSWYG(위지윅) 에디터 (1) | 2007.10.15 |
fck관련 자료 (0) | 2007.10.15 |