| Status | |||
|---|---|---|---|
|
...
|
...
|
Get TableCell by FieldName and load information (id and text).
Parameters:
| Name | Type | Description |
|---|---|---|
| fieldName | String | 조회할 테이블 셀 필드 이름Name of TableCell field to get |
Return:
| Type | Attribute | Description |
|---|---|---|
| Array | [ { id: "tableCellId", text: "table cell text" }, { id: "tableCellId", text: "teble cell text" }, ....] | filedName으로 조회한 Table Cell 정보TableCell information gotten by FieldName |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
var tableCellData = editor.getTableCellDataByFieldName('field name');
/* return value
[
{ id: "tableCellId", text: "table cell text" },
{ id: "tableCellId", text: "teble cell text" },
....
]
*/ |
...