Fieldset extends Element

필드셋을 편집하는데 사용되는 API 모델입니다.

Methods

append(html)

파라메터로 넘겨받은 HTML String으로 Element의 뒤쪽에 자식으로 추가합니다.

var fieldset = editor.getAPIModelById('id');
fieldset.append("<input type='radio' id='mothman' name='monster'><label for='mothman'>Mothman</label>");

prepend(html)

파라메터로 넘겨받은 HTML String으로 Element의 앞쪽에 자식으로 추가합니다.

var fieldset = editor.getAPIModelById('id');
fieldset.prepend("<input type='radio' id='mothman' name='monster'><label for='mothman'>Mothman</label>");

remove()

Element 자신을 제거합니다.

var fieldset = editor.getAPIModelById('id');
fieldset.remove();

replace(html)

Element 자신을 파라메터로 넘겨받은 HTML String으로 교체합니다.

var paragraph = editor.getAPIModelById('id');
paragraph.replace('<p><span>Paragraph replaced</span></p>');

setText(text)

파라메터로 넘겨받은 Text 문자열값을 셀의 내부 Text로 설정합니다.

var cell = editor.getAPIModelById('id');
cell.setText('텍스트입니다.');