Namespace providing a set of helper functions for working with tables, exposed by the Table Selection plugin.
Note: Since 4.12.0 you can use the cke-tableselection-ignored attribute to disable the table selection feature for the given table.
cke-tableselection-ignored
var table = new CKEDITOR.dom.element( 'table' ); table.data( 'cke-tableselection-ignored', 1 );
getCellsBetween( first, last ) → element[]
CKEDITOR.plugins.tableselection#getCellsBetween
Fetches all cells between cells passed as parameters, including these cells.
first : element
The first cell to fetch.
last : element
The last cell to fetch.
element[]
Array of fetched cells.
private
keyboardIntegration( editor )
CKEDITOR.plugins.tableselection#keyboardIntegration
Adds keyboard integration for table selection in a given editor.
editor : editor
Show private items