CKEDITOR.plugins.tableselection
classsingletonsince 4.7.0
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.
var table = new CKEDITOR.dom.element( 'table' );
table.data( 'cke-tableselection-ignored', 1 );
Filtering
Methods
getCellsBetween( first, last ) → element[]CKEDITOR.plugins.tableselection#getCellsBetweenFetches all cells between cells passed as parameters, including these cells.
Parameters
first : elementThe first cell to fetch.
last : elementThe last cell to fetch.
Returns
element[]Array of fetched cells.
-