DEXT5 Editor :: Config :: zIndex

config.zIndex

에디터 배치 순서를 설정합니다.
숫자가 높을 수록 앞에 설정됩니다.

remarks

기본값은 "10000" 입니다.
필요 시 DEXT5.config.zIndex = "배치 순서값" 으로 설정합니다.

sample code

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

        // 에디터 배치 순서를 11000 으로 설정합니다.
        DEXT5.config.zIndex = "11000";

        new Dext5editor("editor1");

    </script>       
</div>