octobercms/october · error · Error

Treeview drag and drop is not supported for branches with en

Error message

Treeview drag and drop is not supported for branches with enabled groupBy option. Node path: {}

What it means

Error "Treeview drag and drop is not supported for branches with enabled groupBy option. Node path: {}" thrown in octobercms/october.

Source

Thrown at modules/backend/vuecomponents/treeview/assets/js/node.js:759

                this.keyPathString
            );
        }

        if (this.dragAndDropMovable && this.branchDisplayMode == 'list') {
            throw new Error(
                'Treeview branch in LIST mode cannot have the MOVE drag and drop option enabled. Node path: ' +
                this.keyPathString
            );
        }

        if (this.branchGroupBy && this.branchDisplayMode !== 'list') {
            throw new Error(
                'Treeview branch in LIST mode cannot have the groupBy property set. Node path: ' + this.keyPathString
            );
        }

        if (this.branchDragAndDropMode && this.branchGroupBy) {
            throw new Error(
                'Treeview drag and drop is not supported for branches with enabled groupBy option. Node path: ' +
                this.keyPathString
            );
        }
    }
};

View on GitHub (pinned to b608633a7e)

When it happens

Trigger: Thrown at modules/backend/vuecomponents/treeview/assets/js/node.js:759 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of octobercms/october@b608633a7e (2026-08-21). Data as JSON: /api/errors/6e3e0a627924a4e9. Report an issue: GitHub.