Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

릴리즈 2.3.1 이상

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


Parameters:

NameTypeDescription
fieldNameString조회할 테이블 셀 필드 이름



Return:

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



Example:

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




  • No labels