Skip to content
This repository has been archived by the owner on Apr 3, 2018. It is now read-only.

다중에디터 사용중 이미지및 파일첨부 질문드립니다. #533

Open
bko32008 opened this issue Jun 30, 2017 · 1 comment
Open

Comments

@bko32008
Copy link

한개의 폼 안에서 두개의 에디터로 사용중입니다.

두번째 에디터에 initializedId 값을 2로 주고

include시키는 jsp 파일에 id값에 모두 2라는 값을 붙였습니다.

첨부 및 사진 div에 id값은 삭제하였습니다.

go_image()라는 함수와 go_file이라는 함수로 대체하였습니다.(팝업창 띄움)

그후에는 글씨체나 글속성은 변경이 잘 되는데 파일및 사진첨부를 할 경우

1번 에디터나 2번 에디터에서 첨부해도 모두 2번에디터에 들어가는 현상이 나타납니다.

위 함수로 변경해서 문제가 되는거같은데.. 함수를 이용하더라도 각각 에디터에 들어가게

할 수 있는 방법이 있을까요??

@hobbit-hobbit
Copy link

hobbit-hobbit commented Nov 14, 2017

다음 에디터 이제 업데이트 안되서 데모도 다 막힌거 같더라고요.
저도 멀티에디터 때문에 고생해서..ㅎ 작성하신지 좀 된 글이지만 답변 남겨드려요
SwitchEditor에 들어가는 값은 initializedId 이구요.
열심히 하세요

EditorJSLoader.ready(function(Editor) {
        var editor1;
        var editor2;
        editor1 =   new Editor(config1);
        Editor.getToolbar().observeJob(Trex.Ev.__TOOL_CLICK, function (type) {
            Editor.switchEditor("1");
        });
        Editor.getCanvas().observeJob(Trex.Ev.__IFRAME_LOAD_COMPLETE, function() {
            Editor.modify({
                content: "Editor1"
            });
            editor2 =   new Editor(config2);
            Editor.getToolbar().observeJob(Trex.Ev.__TOOL_CLICK, function (type) {
                Editor.switchEditor("2");
            });
            Editor.getCanvas().observeJob(Trex.Ev.__IFRAME_LOAD_COMPLETE, function(ev) {
                Editor.modify({
                    content: "Editor2"
                });
            });
        });
    });

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants