Please help I need to make it so that empty table cells are not filled in with I have tried the following code but it does not seem to work.
CKEDITOR.on( 'instanceReady', function( ev )
{
ev.editor.dataProcessor.writer.FillEmptyBlocks = false;
});
CKEDITOR.on( 'instanceReady', function( ev )
{
ev.editor.dataProcessor.writer.FillEmptyBlocks = false;
});
Re: FillEmptyBlocks
I am trying to get this to work as well
Re: FillEmptyBlocks
Re: FillEmptyBlocks
Have you looked through the Output Formatting tutorial yet? It should provide insight into how to manipulate the writer's defaults with your preferred data.
However, I am curious...why remove the ? That would simply allow the cell to collapse, potentially rendering it un-editable unless there were other cells in the row that would "hold it up", if you will.