RELEASE 2.3.1 OR ABOVE
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" }, .... ] | TableCell information gotten by FieldName |
Example:
var tableCellData = editor.getTableCellDataByFieldName('field name'); /* return value [ { id: "tableCellId", text: "table cell text" }, { id: "tableCellId", text: "teble cell text" }, .... ] */