K Editor :: Config :: IgnoreSameEditorName

IgnoreSameEditorName

에디터 명을 중복 생성 할 수 없도록 설정합니다.

remarks

기본값은 "0" 이고, "1" 로 설정시 중복된 에디터 명이 발생 할 경우 에디터에서 임의로 변경 합니다. (단, 동적 생성시)

sample code

<script type="text/javascript" src="keditor/js/raonkeditor.js"></script>	
 
<!-- ..... 생략 ..... -->
 
<div style="width:900px;height:550px">   
    <script type="text/javascript">

        var paramObj = {
            Id: 'editor1',          
            // 중복 된 에디터 명이 발생 할 경우 임의로 변경 설정합니다.
            IgnoreSameEditorName: '1'
        };
        
        new RAONKEditor(paramObj);

    </script>       
</div>