sesaparcours
    Preparing search index...
    interface IToolboxItem {
        dispose: any;
        getDiv(): Element;
        getId(): string;
        getLevel(): number;
        getParent(): IToolboxItem;
        init(): void;
        isCollapsible(): boolean;
        isSelectable(): boolean;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    dispose: any

    Dispose of this toolbox item. No-op by default.

    Methods

    • Gets the div for the toolbox item.

      Returns Element

      The div for the toolbox item.

    • Gets a unique identifier for this toolbox item.

      Returns string

      The ID for the toolbox item.

    • Gets the nested level of the category.

      Returns number

      The nested level of the category.

    • Gets the parent if the toolbox item is nested.

      Returns IToolboxItem

      The parent toolbox item, or null if this toolbox item is not nested.

    • Initializes the toolbox item. This includes creating the DOM and updating the state of any items based on the info object.

      Returns void

    • Whether the toolbox item is collapsible.

      Returns boolean

      True if the toolbox item is collapsible.

    • Whether the toolbox item is selectable.

      Returns boolean

      True if the toolbox item can be selected.