K Editor :: Config :: FormListUrl

FormListUrl

에디터 템플릿 양식 파일경로를 설정합니다.

remarks

http://를 포함한 전체 경로를 설정합니다.

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',          
            // 에디터 템플릿 양식 전체 경로를 설정합니다.
            FormListUrl: 'http://www.raonk.com/forms/forms.html'  
        };
        
        new RAONKEditor(paramObj);

    </script>       
</div>