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

RELEASE 2.3.1 OR ABOVE

Get TableCell by FieldName and load information (id and text).


Parameters:

NameTypeDescription
fieldNameStringName of TableCell field to get



Return:

TypeAttributeDescription
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" },
    ....
]
*/




  • No labels