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.processor.string.js:12
/*
* String cell processor for the table control.
* The string processor allows to edit cell values with a simple
* input control.
*/
+function ($) { "use strict";
// NAMESPACE CHECK
// ============================
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.processor === undefined)
throw new Error("The $.oc.table.processor namespace is not defined. Make sure that the table.processor.base.js script is loaded.");
// CLASS DEFINITION
// ============================
var Base = $.oc.table.processor.base,
BaseProto = Base.prototype
var StringProcessor = function(tableObj, columnName, columnConfiguration) {
//
// State properties
//
this.focusTimeoutHandler = this.onFocusTimeout.bind(this)
//View on GitHub (pinned to b608633a7e)
When it happens
Trigger: Thrown at modules/backend/widgets/table/assets/js/table.processor.string.js:12 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/f6aa8e0c9dec1371.
Report an issue: GitHub.