render
Performs rendering when there are pending model changes.
Use this when you have made model changes with skipRendering: true and want to flush them.
Example
// Example: bulk updates without re-rendering each step
var table = editor.getAPIModelById('ID', { skipRendering: true });
table.insertCol(1);
table.insertRow(1);
table.setWidth(400);
editor.render();