DEXT5 Editor :: Config :: EditorTabDisable

config.EditorTabDisable

디자인영역에서 tab키 입력 시 공백 입력을 설정합니다.

remarks

기본값은 "0" 이고 tab키 입력 시 에디터 디자인영역에 공백 입력, "1" 로 설정 시 다음 컨트롤로 포커스를 이동합니다.

sample code

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

        // 에디터에서 tab키를 입력하면 다음 컨트롤로 포커스 이동을 설정합니다.
        DEXT5.config.EditorTabDisable = "1";

        new Dext5editor("editor1");

    </script>       
</div>