DEXT5 Editor :: Config :: DevelopLangage

config.DevelopLangage

사용중인 사이트의 개발 언어를 설정합니다.

remarks

기본값은 "NET" 이고, NET, JAVA, PHP 중 하나의 값을 사용합니다.

sample code

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

        // 사용중인 사이트 언어를 JAVA로 설정합니다.
        DEXT5.config.DevelopLangage = "JAVA";

        new Dext5editor("editor1");

    </script>       
</div>