Page tree

Versions Compared

Key

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

Status
colourYellow
title릴리즈 2.3.1 이상

FieldName으로 TableCell을 조회하여 정보Get TableCell by FieldName and load information (id , and text)를 가져옵니다.


Parameters:

NameTypeDescription
fieldNameString조회할 테이블 셀 필드 이름Name of TableCell field to get



Return:

TypeAttributeDescription
Array[
    { id: "tableCellId", text: "table cell text" },
    { id: "tableCellId", text: "teble cell text" },
    ....
]
filedName으로 조회한 Table Cell 정보TableCell information gotten by FieldName



Example:

Code Block
languagejs
themeEmacs
var tableCellData = editor.getTableCellDataByFieldName('field name');
/* return value
[
    { id: "tableCellId", text: "table cell text" },
    { id: "tableCellId", text: "teble cell text" },
    ....
]
*/

...