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

« Previous Version 2 Current »

릴리즈 2.3.1 이상

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