사용중인 에디터 간단모드에서 아이콘입니다.

다운로드 (2).png

 

아래 기본 모드의 설문 조사 아이콘을 간단모드에 표시를 하려고 합니다.

 

다운로드.png

 

관련되는 팁( https://xetown.com/questions/1727580 )의 댓글 ( https://xetown.com/questions/1727580#comment_1727816 )에 아래와 같은 내용이 있는데 첨부된 파일 다운로드가 되질 않는데요.

 

다운로드 (3).png

 

댓글 내용 중 첨부파일 config.js 파일 내용을 혹시 좀 알려주실 분 계신가요?

아니면 현재 라이믹스 코어에서 이 팁을 적용( 매번 업데이트시마다 변경해야 하지만) 하는 방법 혹시 아시는 분 계시면 도움 부탁드립니다. 

 

 

Atachment
첨부
  • Lv5

    2.1.19 라이믹스 기준
    위치: modules/editor/skins/ckeditor/js/editor.js  99행 부근

    // Define the simple toolbar.
    if (config.toolbar === 'simple') {
    settings.ckeconfig.toolbar = [
    { name: 'styles', items: [ 'Font', 'FontSize', '-', 'Bold', 'Italic', 'Underline', 'Strike', 'TextColor', 'BGColor' ] },
    { name: 'paragraph', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ] },
    { name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste' ] },
    { name: 'insert', items: [ 'Link', 'Image', 'Table' ] },
    { name: 'tools', items: [ 'Maximize', '-', 'Source' ] }
    ];
    }

     

    위 부분 코드 블럭 내부 밑에쯤 { name: 'xe_component', items: [ 'poll_maker'] } 를 추가하여 다음과 같이 수정

     

    // Define the simple toolbar.
    if (config.toolbar === 'simple') {
    settings.ckeconfig.toolbar = [
    { name: 'styles', items: [ 'Font', 'FontSize', '-', 'Bold', 'Italic', 'Underline', 'Strike', 'TextColor', 'BGColor' ] },
    { name: 'paragraph', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ] },
    { name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste' ] },
    { name: 'insert', items: [ 'Link', 'Image', 'Table' ] },
    { name: 'tools', items: [ 'Maximize', '-', 'Source' ] },
    { name: 'xe_component', items: [ 'poll_maker'] }
    ];
    }

     

  • Lv5 ? Lv7
    번거로우실텐데 알려주신 팁으로 해결되었습니다.
    감사합니다.^^
  • Lv2
    config.js는 라이믹스에 기본적으로 포함되는 파일이 아닌 것으로 알고 있습니다.
    라이믹스를 git등으로 내려받아 업데이트 할 때에도 업데이트에 구애를 받지 않을것으로 보입니다.
  • Lv2 ? Lv7
    아마 코어를 건들이지 않고 config.js 임시로 만들어서 원하는 위치에 아이콘을 배치하는 팁인것 같습니다.
    댓글에 첨부된 예제 config.js 다운로드 링크가 깨져서 우선 임시로 사용해야 겠습니다.
    답변감사합니다.