Every time I attempt to access an object in Chrome Developer Tools, I encounter the following error message: VM4939:1 Uncaught TypeError: Cannot read property 'cells' of undefined at :1:13
Here is my code:
<head>
<script>
var new_2ELayout;
function doOnLoad() {
var new_1CLayout = new dhtmlXLayoutObject({
parent: document.body,
pattern: "1C"
});
var new_1CLayoutA = new_1CLayout.cells("a");
</script>
</head>