Page tree

Versions Compared

Key

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

...

  1. 에디터 API사용 ( setLock, setUnlock)

    Code Block
    languagejs
    themeEmacs
    linenumberstrue
    window.editor.setLock('.se-contents');
    window.editor.setUnlock('#editable_td');


  2. 소스보기 사용

    Code Block
    languagexml
    themeEmacs
    linenumberstrue
    <div class="se-contents se-lock" style="font-family: Arial, Helvetica, sans-serif; font-size: 11pt; line-height: 1.2; padding: 25px;">
      <table>
        <tr>
          <td>1</td>
          <td id=editable_td class="se-unlock">2 - editable</td>
        </tr>
        <tr>
          <td>3</td>
          <td>4</td>
        </tr>
      </table>
    </div>


...