살아 숨 쉬는 웹 - 블루비

'2008/09/29'에 해당되는 글 2건

  1. 2008/09/29 FCKEditor 기본 설정
  2. 2008/09/29 FCKEditor focus & validate
1 

FCKEditor 기본 설정Total 894 : Today 5 : Yesterday 6

사용자 삽입 이미지




filemanager PHP 설정

/fckeditor/ediotr/filemanager/connectors/php/config.php
$Config['Enabled'] = true ;//false를 true로 변경

$Config['UserFilesPath'] = '/upfiles/fckeditor/' ;//저장할 위치 퍼미션 777

$root = ( substr($_SERVER['DOCUMENT_ROOT'],-1) == "/" ) ? substr($_SERVER['DOCUMENT_ROOT'],0,-1):$_SERVER['DOCUMENT_ROOT'];
$Config['UserFilesAbsolutePath'] = $root.$Config['UserFilesPath'] ;

fckeditor.js 파일 설정

FCKeditor.BasePath = '/scripts/fckeditor/' ;

fckconfig.js 파일 설정

FCKConfig.EnterMode = 'br' ; // p | div | br - p 를 br로 수정
FCKConfig.ShiftEnterMode = 'p' ; // p | div | br - br 를 p로 수정

FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
] ;
//사용자 입맛에 맞게 툴바 추가
FCKConfig.ToolbarSets["Board"] = [
['Source','-','Bold','Italic','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','-','OrderedList','UnorderedList','-','Link','Unlink'],
['Outdent','Indent','Blockquote'],
['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak']
] ;

2008/09/29 14:51 2008/09/29 14:51
웹프로그래밍™/jQuery, Javascript 2008/09/29 14:51 by 블루비

TRACKBACK :: http://blueb.net/blog/trackback/1306

Leave a Comment
[로그인][오픈아이디란?]

FCKEditor focus & validateTotal 473 : Today 1 : Yesterday 2

사용자 삽입 이미지




처음 로드시 FCKEditor 생성
window.onload = fucntion()
{
oFCKeditor = new FCKeditor( 'content','100%',300) ;
oFCKeditor.ReplaceTextarea() ;
}

validate 체크 및 focus
var fck=FCKeditorAPI.GetInstance(oFCKeditor.InstanceName) ;
if( fck.GetXHTML(true) == "" ){
window.alert("내용을 입력해 주세요");
fck.Focus();
return;
}
2008/09/29 13:57 2008/09/29 13:57
웹프로그래밍™/jQuery, Javascript 2008/09/29 13:57 by 블루비

TRACKBACK :: http://blueb.net/blog/trackback/1305

Leave a Comment
[로그인][오픈아이디란?]
1 
전체 (799)
웹표준, 웹접근성™ (5)
웹프로그래밍™ (367)
웹기획™ (0)
웹디자인™ (5)
서버™ (34)
데이터베이스™ (44)
개발자료 (9)
트랜드 (60)
Study English (2)
블루비 (73)
오피스 다이어리 (19)
Textcube (2)
이슈 (20)
컴퓨터 악세사리 (18)
엔터테인먼트 (24)
좋은글 (82)
재테크 (1)
이벤트 (4)