Module

table/utils/common

@ckeditor/ckeditor5-table/src/utils/common

module

Filtering

Functions

  • createEmptyTableCell( writer, insertPosition, attributes ) → Element

    A common method to create an empty table cell. It creates a proper model structure as a table cell must have at least one block inside.

    Parameters

    writer : Writer

    The model writer.

    insertPosition : Position

    The position at which the table cell should be inserted.

    attributes : Object

    The element attributes.

    Returns

    Element

    Created table cell.

  • isHeadingColumnCell( tableUtils, tableCell ) → Boolean

    Checks if a table cell belongs to the heading column section.

    Parameters

    tableUtils : TableUtils
    tableCell : Element

    Returns

    Boolean
  • updateNumericAttribute( key, value, item, writer, defaultValue )

    A common method to update the numeric value. If a value is the default one, it will be unset.

    Parameters

    key : String

    An attribute key.

    value : *

    The new attribute value.

    item : Item

    A model item on which the attribute will be set.

    writer : Writer
    defaultValue : *

    The default attribute value. If a value is lower or equal, it will be unset.