Interface

TableLayoutConfig (table)

@ckeditor/ckeditor5-table/src/tableconfig

interface

The configuration of the table layout feature.

Filtering

Properties

  • preferredExternalTableType : TableType

    Sets the preferred type for loading external tables.

    This setting overrides the default detection method and uses the specified type ('content' or 'layout').

    ClassicEditor
    	.create( {
    		table: {
    			tableLayout: {
    				preferredExternalTableType: 'content' // or 'layout'
    			}
    		}
    	} )
    	.then( ... )
    	.catch( ... );