v7.3.0

ColumnResize
Feature

This feature allows users to change the width of individual TaskBoard columns. Resize is initiated upon mouse down on the separator element between column headers. Try it out below!

Resize events

The different stages of a resize operation trigger different events, in order of appearance:

Event Description
beforeColumnResize Preventable event fired before a resize starts
columnResizeStart Fired when resizing starts
columnResize Fired after a resize gesture that lead to changes

This feature is disabled by default.

No results

Properties

Properties are getters/setters or publicly accessible variables on this class

Functions

Functions are methods available for calling on the class
    • onCancel( )
      private

      Restore column width on cancel (ESC)

    • onResize( )
      private

      Handle resize end event


      Triggers: columnResize

    • onResizing( )
      private

      Handle drag event - resize the column live

    Events

    Events are triggered for certain actions in this class and can be listened for to react to those actions in your code

    Event handlers

    Event handlers are callbacks called as a result of certain actions in this class

    CSS variables

    CSS variables that can be set to adjust appearance
    Name Description
    --b-task-board-column-resize-handle-min-width Minimum width of the resize handle.
    id: columnResize

    Source path

    TaskBoard/feature/ColumnResize.js

    Contents