DEXT5 Editor :: Config :: IgnoreSameEditorName

config.IgnoreSameEditorName

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

remarks

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

sample code

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

        // 중복 된 에디터 명이 발생 할 경우 임의로 변경 설정합니다.
        DEXT5.config.IgnoreSameEditorName = "1";

        new Dext5editor("editor1");

    </script>       
</div>