[CHEditor 5.1.9] template.xml 파일 로딩 오류 패치 코드 > 기술자료 | 해피정닷컴

[CHEditor 5.1.9] template.xml 파일 로딩 오류 패치 코드 > 기술자료

본문 바로가기

사이트 내 전체검색

[CHEditor 5.1.9] template.xml 파일 로딩 오류 패치 코드 > 기술자료

Editor [CHEditor 5.1.9] template.xml 파일 로딩 오류 패치 코드

페이지 정보


본문

특정 IE에서 template.xml 파일 로딩 오류가 발생하는 문제를 패치하기 위한 코드입니다.
수정 파일: cheditor.js
수정 함수: loadTemplate, getCDATASection
위 두 개의 수정 함수를 아래 것으로 교체해 주십시오.

    loadTemplate : function (xmlDoc) {
        var cdata, container, dragHandle, html, modalFrame, popupWindow, tmpDiv, tmpl, toolbar;
        tmpl = xmlDoc.getElementsByTagName('Template').item(0);
        if (!tmpl) {
            throw 'Template 노드를 설정할 수 없습니다.';
        }
        cdata = tmpl.getElementsByTagName('Container').item(0).getElementsByTagName('Html').item(0);
        if (!cdata) {
            throw 'XML CDATA 오류';
        }
        html = this.getCDATASection(cdata);
        tmpDiv = document.createElement('div');
        tmpDiv.innerHTML = html;
        container = tmpDiv.firstChild;

        toolbar = tmpl.getElementsByTagName('Toolbar').item(0);
        this.createEditorElement(container, toolbar);

        cdata = tmpl.getElementsByTagName('PopupWindow').item(0).getElementsByTagName('Html').item(0);
        if (!cdata) {
            throw 'XML CDATA 오류';
        }
        html = this.getCDATASection(cdata);
        tmpDiv.innerHTML = html;
        popupWindow = tmpDiv.firstChild;
        this.cheditor.popupElem = popupWindow;

        dragHandle = popupWindow.firstChild;
        this.cheditor.dragHandle = dragHandle;
        this.cheditor.popupTitle = dragHandle.getElementsByTagName('label')[0];
        this.cheditor.popupFrameWrapper = dragHandle.nextSibling;
        container.appendChild(popupWindow);

        modalFrame = document.createElement('div');
        modalFrame.className = 'cheditor-modalPopupTransparent';
        this.cheditor.modalBackground = modalFrame;
        this.cheditor.modalBackground.id = 'popupModalBackground';
        this.cheditor.modalBackground.className = 'cheditor-popupModalBackground';
        container.parentNode.insertBefore(modalFrame, container);

        this.cheditor.htmlEditable = document.createElement('iframe');
        this.cheditor.htmlEditable.style.display = 'none';
        this.cheditor.htmlEditable.style.width = '1px';
        this.cheditor.htmlEditable.style.height = '1px';
        this.cheditor.htmlEditable.style.visibility = 'hidden';
        container.appendChild(this.cheditor.htmlEditable);
    },
    
    getCDATASection : function (node) {
        var text = node.textContent || node.text;
        text = text.replace(/\n/g, '');
        text = text.replace(/(\s+?)<([^>]*)>/g, '<$2>');
        text = this.trimSpace(text);
        return text;
    }, 



자료출처
https://groups.google.com/forum/#!topic/chsoft/xsThh4BL9FQ 

댓글목록

등록된 댓글이 없습니다.


Total 2,639건 1 페이지
  • RSS
기술자료 목록
2639
호스팅   45  2024-11-19 14:41 ~ 2024-11-19 21:17  
2638
Linux   51  2024-11-18 15:45 ~ 2024-11-18 15:48  
2637
일반   55  2024-11-15 16:45 ~ 2024-11-15 16:46  
2636
Secure   110  2024-11-06 18:48 ~ 2024-11-06 18:50  
2635
영카트   246  2024-10-21 13:44 ~ 2024-10-21 19:42  
2634
전자결제   494  2024-09-05 09:30  
2633
MySQL   920  2024-03-29 14:14 ~ 2024-03-29 14:14  
2632
그누보드   1136  2024-02-23 18:40 ~ 2024-02-24 06:13  
2631
JavaScript   1243  2024-02-16 18:50 ~ 2024-02-16 20:37  
2630
Java   1176  2024-02-06 16:49  
2629
PHP   1370  2024-02-06 16:42  
2628
호스팅   1210  2024-01-29 12:54  
2627
PHP   1277  2024-01-26 11:04 ~ 2024-01-26 11:13  
2626
MySQL   1470  2024-01-08 17:37 ~ 2024-03-14 16:00  
2625
SQL   1564  2024-01-08 12:36  
2624
영카트   1647  2024-01-04 14:57  
2623
일반   2559  2023-12-15 18:33  
2622
Android   2049  2023-11-30 18:48 ~ 2023-11-30 19:41  
2621
전자결제   3995  2023-11-23 19:53  
2620
PHP   2883  2023-11-20 10:56 ~ 2023-11-20 11:14  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.