Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeEmacs
var cell = editor.getAPIModelById('id');
cell.setRowHeight(50);

setHTML(html)

  • html <String> Cell 내부에 설정할 HTML 문자열

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

Code Block
languagejs
themeEmacs
var cell = editor.getAPIModelById('id');
cell.setHTML('<p><span>HTML를 추가합니다. 기존에 입력된 내용은 모두 지워집니다.</span></p>');

setText(text)

  • text <String> 셀 내부에 설정할 Text 문자열

...