void Dext5editor(editor_id)
에디터를 생성합니다.
DEXT5 에디터는 한 페이지에 여러 개의 에디터를 생성할 수 있습니다.
return value
없음.
parameters
editor_id 생성할 에디터의 id를 의미합니다.
remarks
new Dext5editor('editor1'); 로 에디터를 생성합니다.
sample code
<!-- ..... 생략 ..... -->
<script type="text/javascript" src="dext5/js/dext5editor.js"></script>
<!-- ..... 생략 ..... -->
<div style="width:900px;height:550px">
<!-- 에디터 생성 -->
<script type="text/javascript">
new Dext5editor('editor1');
</script>
</div>
<!-- ..... 생략 ..... -->
</body>
</html>