The API model used to edit rows in a table.
Delete the row.
var row = editor.getAPIModelById('id');
row.deleteRow(); |
Add a line after it. If the before value is true, a row is added before the row.
var row = editor.getAPIModelById('id');
row.insertRow(); // add row after row
row.insertRow(true); // add row before row |
Sets the row height.
var row = editor.getAPIModelById('id');
row.setRowHeight(50); |