K Editor :: Config :: ToolBarGrouping

ToolBarGrouping

에디터 아이콘 툴바 그룹핑을 설정합니다.

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',          
            // 에디터 아이콘 툴바 그룹핑을 사용으로 설정합니다.
            ToolBarGrouping: '1'
        };
        
        new RAONKEditor(paramObj);

    </script>       
</div>