octobercms/october · error · Error

The $.oc.table namespace is not defined. Make sure that the

Error message

The $.oc.table namespace is not defined. Make sure that the table.js script is loaded.

What it means

Error "The $.oc.table namespace is not defined. Make sure that the table.js script is loaded." thrown in octobercms/october.

Source

Thrown at modules/backend/widgets/table/assets/js/table.datasource.base.js:10

/*
 * Base class for the table data sources.
 */
+function ($) { "use strict";

    // DATASOURCE NAMESPACES
    // ============================

    if ($.oc.table === undefined)
        throw new Error("The $.oc.table namespace is not defined. Make sure that the table.js script is loaded.");

    if ($.oc.table.datasource === undefined)
        $.oc.table.datasource = {}

    // CLASS DEFINITION
    // ============================

    var Base = function(tableObj) {
        //
        // State properties
        //

        this.tableObj = tableObj
    }

    Base.prototype.dispose = function() {
        this.tableObj = null
    }

View on GitHub (pinned to b608633a7e)

When it happens

Trigger: Thrown at modules/backend/widgets/table/assets/js/table.datasource.base.js:10 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/bfe92eeb1af6d2ac. Report an issue: GitHub.