| Status |
|---|
| |
|---|
| colour | Yellow |
|---|
| title | 릴리즈 2.3.1 이상 |
|---|
|
FieldName으로 TableCell을 조회하여 정보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 |
| 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" },
....
]
*/ |
...